{
	"info": {
		"_postman_id": "ac0c52f6-9445-4333-a29c-7c370e59ef09",
		"name": "Otomoto API Onboarding",
		"description": "This is a step-by-step on Otomoto's API onboarding process, needed in order to correctly integrate with Otomoto's API.\n\nPlease pay attention to all notes in requests, since they help you understand the requests, why and when you need to use them.\n\nAny question regarding Otomoto's API please contact us via [api@otomoto.pl](https://mailto:api@otomoto.pl)",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "22846439"
	},
	"item": [
		{
			"name": "AUTHENTICATION",
			"item": [
				{
					"name": "OAUTH TOKEN",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "grant_type",
									"value": "password",
									"type": "text"
								},
								{
									"key": "username",
									"value": "{{username}}",
									"type": "text"
								},
								{
									"key": "password",
									"value": "{{password}}",
									"type": "text"
								},
								{
									"key": "client_id",
									"value": "{{client_id}}",
									"type": "text"
								},
								{
									"key": "client_secret",
									"value": "{{client_secret}}",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{base_url}}/oauth/token/",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"oauth",
								"token",
								""
							]
						},
						"description": "Use this request to receive an access token for a given account."
					},
					"response": [
						{
							"name": "OAuth Token (User/password) - Positive Response",
							"originalRequest": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "urlencoded",
									"urlencoded": [
										{
											"key": "grant_type",
											"value": "password",
											"type": "text"
										},
										{
											"key": "username",
											"value": "{{username}}",
											"type": "text"
										},
										{
											"key": "password",
											"value": "{{password}}",
											"type": "text"
										},
										{
											"key": "client_id",
											"value": "{{client_id}}",
											"type": "text"
										},
										{
											"key": "client_secret",
											"value": "{{client_secret}}",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "www.otomoto.pl/open/api/oauth/token/",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"oauth",
										"token",
										""
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 11:35:32 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Content-Length",
									"value": "180"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Set-Cookie",
									"value": "PHPSESSID=3d8dafaa4efdb02ea72053bf0b899b9a; path=/;SameSite=none; domain=.sbcarspt.playground.lisbontechhub.com; secure; HttpOnly"
								},
								{
									"key": "Set-Cookie",
									"value": "user_id=293; path=/; domain=.sbcarspt.playground.lisbontechhub.com"
								},
								{
									"key": "Set-Cookie",
									"value": "event_login=true; expires=Thu, 15-Oct-2020 11:35:42 GMT; Max-Age=10; path=/; domain=.sbcarspt.playground.lisbontechhub.com"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=264097 t=1602761732190343"
								}
							],
							"cookie": [],
							"body": "{\n    \"access_token\": \"a5e6056024b030df73d6f6635b846d1e7820a915\",\n    \"token_type\": \"bearer\",\n    \"expires_in\": 35304,\n    \"refresh_token\": \"ddf4ed6a0771dc5070300affb09170d06614bae9\",\n    \"scope\": \"read write\"\n}"
						},
						{
							"name": "OAuth Token (User/password) - Negative Response",
							"originalRequest": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "urlencoded",
									"urlencoded": [
										{
											"key": "grant_type",
											"value": "password",
											"type": "text"
										},
										{
											"key": "username",
											"value": "{{username}}",
											"type": "text"
										},
										{
											"key": "password",
											"value": "{{password}}",
											"type": "text"
										},
										{
											"key": "client_id",
											"value": "{{client_id}}",
											"type": "text"
										},
										{
											"key": "client_secret",
											"value": "{{client_secret}}",
											"type": "text"
										}
									]
								},
								"url": {
									"raw": "{{base_url}}/oauth/token/",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"oauth",
										"token",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 11:41:26 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "166"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=190758 t=1602762086333434"
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": \"invalid_client\",\n    \"error_description\": \"Cannot identify and/or authenticate the client.\",\n    \"error_human_title\": \"Nie można zidentyfikować/zautoryzować klienta.\"\n}"
						}
					]
				}
			],
			"description": "How to authenticate in Otomoto",
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "CAR CATALOG INFO",
			"item": [
				{
					"name": "GET MAKE",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{base_url}}/categories/:category_id/makes",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories",
								":category_id",
								"makes"
							],
							"variable": [
								{
									"key": "category_id",
									"value": "29"
								}
							]
						},
						"description": "Use this request to obtain all Makes available in Otomoto via the category ID.\n\n- 29 -> Cars\n    \n- 73 -> Commercials\n    \n- 65 -> Motorcycles\n    \n- 161 -> Parts\n    \n- 57 -> Trucks\n    \n- 1 -> Agro\n    \n\nValues the server expects:\n\n- category_id"
					},
					"response": [
						{
							"name": "Get all MAKES from Category - Negative Response",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "www.otomoto.pl/open/api/categories/:category_id/makes",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"categories",
										":category_id",
										"makes"
									],
									"variable": [
										{
											"key": "category_id",
											"value": "30"
										}
									]
								}
							},
							"status": "Not Found",
							"code": 404,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 11:47:53 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "67"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=199041 t=1602762473244017"
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": {\n        \"type\": \"NotFoundException\",\n        \"message\": \"Brands not found\"\n    }\n}"
						},
						{
							"name": "Get all MAKES from Category - Positive Response",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{base_url}}/categories/:category_id/makes",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"categories",
										":category_id",
										"makes"
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Fri, 07 Mar 2025 15:03:03 GMT"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Set-Cookie",
									"value": "PHPSESSID=koac8g3pg227hmkrtfl0o8jupp; path=/; domain=.otomoto.pl; secure; HttpOnly; SameSite=Lax"
								},
								{
									"key": "Set-Cookie",
									"value": "user_id=0; expires=Fri, 07 Mar 2025 14:03:03 GMT; Max-Age=0"
								},
								{
									"key": "Set-Cookie",
									"value": "refresh_token=deleted; expires=Fri, 07 Mar 2025 14:03:03 GMT; Max-Age=0; path=/; domain=.otomoto.pl"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 0f7857c85f75e0919fec5346212caa26.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "WAW51-P4"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "Pwq1m2202oL_-JC0_y8QHec47b9xZHVnM6q6lw7uXRWlNkSgG4TMvQ=="
								}
							],
							"cookie": [],
							"body": "{\n    \"options\": {\n        \"acura\": {\n            \"pl\": \"Acura\",\n            \"en\": \"Acura\"\n        },\n        \"aixam\": {\n            \"pl\": \"Aixam\",\n            \"en\": \"Aixam\"\n        },\n        \"alfa-romeo\": {\n            \"pl\": \"Alfa Romeo\",\n            \"en\": \"Alfa Romeo\"\n        },\n        \"asia\": {\n            \"pl\": \"Asia\",\n            \"en\": \"Asia\"\n        },\n        \"aston-martin\": {\n            \"pl\": \"Aston Martin\",\n            \"en\": \"Aston Martin\"\n        },\n        \"audi\": {\n            \"pl\": \"Audi\",\n            \"en\": \"Audi\"\n        },\n        \"austin\": {\n            \"pl\": \"Austin\",\n            \"en\": \"Austin\"\n        },\n        \"autobianchi\": {\n            \"pl\": \"Autobianchi\",\n            \"en\": \"Autobianchi\"\n        },\n        \"bmw\": {\n            \"pl\": \"BMW\",\n            \"en\": \"BMW\"\n        },\n        \"bentley\": {\n            \"pl\": \"Bentley\",\n            \"en\": \"Bentley\"\n        },\n        \"brilliance\": {\n            \"pl\": \"Brilliance\",\n            \"en\": \"Brilliance\"\n        },\n        \"bugatti\": {\n            \"pl\": \"Bugatti\",\n            \"en\": \"Bugatti\"\n        },\n        \"buick\": {\n            \"pl\": \"Buick\",\n            \"en\": \"Buick\"\n        },\n        \"cadillac\": {\n            \"pl\": \"Cadillac\",\n            \"en\": \"Cadillac\"\n        },\n        \"caterham\": {\n            \"pl\": \"Caterham\",\n            \"en\": \"Caterham\"\n        },\n        \"chatenet\": {\n            \"pl\": \"Chatenet\",\n            \"en\": \"Chatenet\"\n        },\n        \"chevrolet\": {\n            \"pl\": \"Chevrolet\",\n            \"en\": \"Chevrolet\"\n        },\n        \"chrysler\": {\n            \"pl\": \"Chrysler\",\n            \"en\": \"Chrysler\"\n        },\n        \"citroen\": {\n            \"pl\": \"Citroën\",\n            \"en\": \"Citroën\"\n        },\n        \"dfsk\": {\n            \"pl\": \"DFSK\",\n            \"en\": \"DFSK\"\n        },\n        \"dkw\": {\n            \"pl\": \"DKW\",\n            \"en\": \"DKW\"\n        },\n        \"dacia\": {\n            \"pl\": \"Dacia\",\n            \"en\": \"Dacia\"\n        },\n        \"daewoo\": {\n            \"pl\": \"Daewoo\",\n            \"en\": \"Daewoo\"\n        },\n        \"daihatsu\": {\n            \"pl\": \"Daihatsu\",\n            \"en\": \"Daihatsu\"\n        },\n        \"dodge\": {\n            \"pl\": \"Dodge\",\n            \"en\": \"Dodge\"\n        },\n        \"faw\": {\n            \"pl\": \"FAW\",\n            \"en\": \"FAW\"\n        },\n        \"ferrari\": {\n            \"pl\": \"Ferrari\",\n            \"en\": \"Ferrari\"\n        },\n        \"fiat\": {\n            \"pl\": \"Fiat\",\n            \"en\": \"Fiat\"\n        },\n        \"ford\": {\n            \"pl\": \"Ford\",\n            \"en\": \"Ford\"\n        },\n        \"gmc\": {\n            \"pl\": \"GMC\",\n            \"en\": \"GMC\"\n        },\n        \"gwm\": {\n            \"pl\": \"GWM\",\n            \"en\": \"GWM\"\n        },\n        \"gaz\": {\n            \"pl\": \"Gaz\",\n            \"en\": \"Gaz\"\n        },\n        \"geely\": {\n            \"pl\": \"Geely\",\n            \"en\": \"Geely\"\n        },\n        \"honda\": {\n            \"pl\": \"Honda\",\n            \"en\": \"Honda\"\n        },\n        \"hummer\": {\n            \"pl\": \"Hummer\",\n            \"en\": \"Hummer\"\n        },\n        \"hyundai\": {\n            \"pl\": \"Hyundai\",\n            \"en\": \"Hyundai\"\n        },\n        \"infiniti\": {\n            \"pl\": \"Infiniti\",\n            \"en\": \"Infiniti\"\n        },\n        \"isuzu\": {\n            \"pl\": \"Isuzu\",\n            \"en\": \"Isuzu\"\n        },\n        \"iveco\": {\n            \"pl\": \"Iveco\",\n            \"en\": \"Iveco\"\n        },\n        \"jaguar\": {\n            \"pl\": \"Jaguar\",\n            \"en\": \"Jaguar\"\n        },\n        \"jeep\": {\n            \"pl\": \"Jeep\",\n            \"en\": \"Jeep\"\n        },\n        \"kia\": {\n            \"pl\": \"Kia\",\n            \"en\": \"Kia\"\n        },\n        \"lti\": {\n            \"pl\": \"LTI\",\n            \"en\": \"LTI\"\n        },\n        \"lada\": {\n            \"pl\": \"Lada\",\n            \"en\": \"Lada\"\n        },\n        \"lamborghini\": {\n            \"pl\": \"Lamborghini\",\n            \"en\": \"Lamborghini\"\n        },\n        \"lancia\": {\n            \"pl\": \"Lancia\",\n            \"en\": \"Lancia\"\n        },\n        \"land-rover\": {\n            \"pl\": \"Land Rover\",\n            \"en\": \"Land Rover\"\n        },\n        \"lexus\": {\n            \"pl\": \"Lexus\",\n            \"en\": \"Lexus\"\n        },\n        \"ligier\": {\n            \"pl\": \"Ligier\",\n            \"en\": \"Ligier\"\n        },\n        \"lincoln\": {\n            \"pl\": \"Lincoln\",\n            \"en\": \"Lincoln\"\n        },\n        \"lotus\": {\n            \"pl\": \"Lotus\",\n            \"en\": \"Lotus\"\n        },\n        \"mg\": {\n            \"pl\": \"MG\",\n            \"en\": \"MG\"\n        },\n        \"maserati\": {\n            \"pl\": \"Maserati\",\n            \"en\": \"Maserati\"\n        },\n        \"maybach\": {\n            \"pl\": \"Maybach\",\n            \"en\": \"Maybach\"\n        },\n        \"mazda\": {\n            \"pl\": \"Mazda\",\n            \"en\": \"Mazda\"\n        },\n        \"mclaren\": {\n            \"pl\": \"McLaren\",\n            \"en\": \"McLaren\"\n        },\n        \"mercedes-benz\": {\n            \"pl\": \"Mercedes-Benz\",\n            \"en\": \"Mercedes-Benz\"\n        },\n        \"mercury\": {\n            \"pl\": \"Mercury\",\n            \"en\": \"Mercury\"\n        },\n        \"microcar\": {\n            \"pl\": \"Microcar\",\n            \"en\": \"Microcar\"\n        },\n        \"mini\": {\n            \"pl\": \"MINI\",\n            \"en\": \"MINI\"\n        },\n        \"mitsubishi\": {\n            \"pl\": \"Mitsubishi\",\n            \"en\": \"Mitsubishi\"\n        },\n        \"nissan\": {\n            \"pl\": \"Nissan\",\n            \"en\": \"Nissan\"\n        },\n        \"nysa\": {\n            \"pl\": \"Nysa\",\n            \"en\": \"Nysa\"\n        },\n        \"oldsmobile\": {\n            \"pl\": \"Oldsmobile\",\n            \"en\": \"Oldsmobile\"\n        },\n        \"opel\": {\n            \"pl\": \"Opel\",\n            \"en\": \"Opel\"\n        },\n        \"peugeot\": {\n            \"pl\": \"Peugeot\",\n            \"en\": \"Peugeot\"\n        },\n        \"piaggio\": {\n            \"pl\": \"Piaggio\",\n            \"en\": \"Piaggio\"\n        },\n        \"plymouth\": {\n            \"pl\": \"Plymouth\",\n            \"en\": \"Plymouth\"\n        },\n        \"polonez\": {\n            \"pl\": \"Polonez\",\n            \"en\": \"Polonez\"\n        },\n        \"pontiac\": {\n            \"pl\": \"Pontiac\",\n            \"en\": \"Pontiac\"\n        },\n        \"porsche\": {\n            \"pl\": \"Porsche\",\n            \"en\": \"Porsche\"\n        },\n        \"renault\": {\n            \"pl\": \"Renault\",\n            \"en\": \"Renault\"\n        },\n        \"rolls-royce\": {\n            \"pl\": \"Rolls-Royce\",\n            \"en\": \"Rolls-Royce\"\n        },\n        \"rover\": {\n            \"pl\": \"Rover\",\n            \"en\": \"Rover\"\n        },\n        \"saab\": {\n            \"pl\": \"Saab\",\n            \"en\": \"Saab\"\n        },\n        \"seat\": {\n            \"pl\": \"Seat\",\n            \"en\": \"Seat\"\n        },\n        \"shuanghuan\": {\n            \"pl\": \"Shuanghuan\",\n            \"en\": \"Shuanghuan\"\n        },\n        \"smart\": {\n            \"pl\": \"Smart\",\n            \"en\": \"Smart\"\n        },\n        \"ssangyong\": {\n            \"pl\": \"SsangYong\",\n            \"en\": \"SsangYong\"\n        },\n        \"subaru\": {\n            \"pl\": \"Subaru\",\n            \"en\": \"Subaru\"\n        },\n        \"suzuki\": {\n            \"pl\": \"Suzuki\",\n            \"en\": \"Suzuki\"\n        },\n        \"syrena\": {\n            \"pl\": \"Syrena\",\n            \"en\": \"Syrena\"\n        },\n        \"tarpan\": {\n            \"pl\": \"Tarpan\",\n            \"en\": \"Tarpan\"\n        },\n        \"tata\": {\n            \"pl\": \"Tata\",\n            \"en\": \"Tata\"\n        },\n        \"tesla\": {\n            \"pl\": \"Tesla\",\n            \"en\": \"Tesla\"\n        },\n        \"toyota\": {\n            \"pl\": \"Toyota\",\n            \"en\": \"Toyota\"\n        },\n        \"trabant\": {\n            \"pl\": \"Trabant\",\n            \"en\": \"Trabant\"\n        },\n        \"triumph\": {\n            \"pl\": \"Triumph\",\n            \"en\": \"Triumph\"\n        },\n        \"uaz\": {\n            \"pl\": \"Uaz\",\n            \"en\": \"Uaz\"\n        },\n        \"vauxhall\": {\n            \"pl\": \"Vauxhall\",\n            \"en\": \"Vauxhall\"\n        },\n        \"volkswagen\": {\n            \"pl\": \"Volkswagen\",\n            \"en\": \"Volkswagen\"\n        },\n        \"volvo\": {\n            \"pl\": \"Volvo\",\n            \"en\": \"Volvo\"\n        },\n        \"warszawa\": {\n            \"pl\": \"Warszawa\",\n            \"en\": \"Warszawa\"\n        },\n        \"wartburg\": {\n            \"pl\": \"Wartburg\",\n            \"en\": \"Wartburg\"\n        },\n        \"wolga\": {\n            \"pl\": \"Wołga\",\n            \"en\": \"Wołga\"\n        },\n        \"zaporozec\": {\n            \"pl\": \"Zaporożec\",\n            \"en\": \"Zaporożec\"\n        },\n        \"zastawa\": {\n            \"pl\": \"Zastava\",\n            \"en\": \"Zastava\"\n        },\n        \"other\": {\n            \"pl\": \"Inny\",\n            \"en\": \"other\"\n        },\n        \"skoda\": {\n            \"pl\": \"Skoda\",\n            \"en\": \"Skoda\"\n        },\n        \"zuk\": {\n            \"pl\": \"Żuk\",\n            \"en\": \"Żuk\"\n        },\n        \"abarth\": {\n            \"pl\": \"Abarth\",\n            \"en\": \"Abarth\"\n        },\n        \"casalini\": {\n            \"pl\": \"Casalini\",\n            \"en\": \"Casalini\"\n        },\n        \"ds-automobiles\": {\n            \"pl\": \"DS Automobiles\",\n            \"en\": \"DS Automobiles\"\n        },\n        \"ram\": {\n            \"pl\": \"RAM\",\n            \"en\": \"RAM\"\n        },\n        \"cupra\": {\n            \"pl\": \"Cupra\",\n            \"en\": \"Cupra\"\n        },\n        \"baic\": {\n            \"pl\": \"Baic\",\n            \"en\": \"Baic\"\n        },\n        \"alpine\": {\n            \"pl\": \"Alpine\",\n            \"en\": \"Alpine\"\n        },\n        \"man\": {\n            \"pl\": \"MAN\",\n            \"en\": \"MAN\"\n        },\n        \"levc\": {\n            \"pl\": \"LEVC\",\n            \"en\": \"LEVC\"\n        },\n        \"polestar\": {\n            \"pl\": \"Polestar\",\n            \"en\": \"Polestar\"\n        },\n        \"alpina\": {\n            \"pl\": \"BMW-ALPINA\",\n            \"en\": \"BMW-ALPINA\"\n        },\n        \"dr-motor\": {\n            \"pl\": \"DR MOTOR\",\n            \"en\": \"DR MOTOR\"\n        },\n        \"velex\": {\n            \"pl\": \"VELEX\",\n            \"en\": \"VELEX\"\n        },\n        \"skywell\": {\n            \"pl\": \"Skywell\",\n            \"en\": \"Skywell\"\n        },\n        \"maxus\": {\n            \"pl\": \"Maxus\",\n            \"en\": \"Maxus\"\n        },\n        \"seres\": {\n            \"pl\": \"Seres\",\n            \"en\": \"Seres\"\n        },\n        \"delorean\": {\n            \"pl\": \"DeLorean\",\n            \"en\": \"DeLorean\"\n        },\n        \"genesis\": {\n            \"pl\": \"Genesis\",\n            \"en\": \"Genesis\"\n        },\n        \"ktm\": {\n            \"pl\": \"KTM\",\n            \"en\": \"KTM\"\n        },\n        \"hongqi\": {\n            \"pl\": \"Hongqi\",\n            \"en\": \"Hongqi\"\n        },\n        \"byd\": {\n            \"pl\": \"BYD\",\n            \"en\": \"BYD\"\n        },\n        \"nio\": {\n            \"pl\": \"NIO\",\n            \"en\": \"NIO\"\n        },\n        \"jetour\": {\n            \"pl\": \"Jetour\",\n            \"en\": \"Jetour\"\n        },\n        \"ineos\": {\n            \"pl\": \"Ineos\",\n            \"en\": \"Ineos\"\n        },\n        \"lucid\": {\n            \"pl\": \"Lucid\",\n            \"en\": \"Lucid\"\n        },\n        \"cenntro\": {\n            \"pl\": \"Cenntro\",\n            \"en\": \"Cenntro\"\n        },\n        \"changan\": {\n            \"pl\": \"Changan\",\n            \"en\": \"Changan\"\n        },\n        \"aiways\": {\n            \"pl\": \"Aiways\",\n            \"en\": \"Aiways\"\n        },\n        \"zeekr\": {\n            \"pl\": \"ZEEKR\",\n            \"en\": \"ZEEKR\"\n        },\n        \"iamelectric\": {\n            \"pl\": \"iamelectric\",\n            \"en\": \"iamelectric\"\n        },\n        \"xpeng\": {\n            \"pl\": \"XPeng\",\n            \"en\": \"XPeng\"\n        },\n        \"lynk-and-co\": {\n            \"pl\": \"Lynk & Co\",\n            \"en\": \"Lynk & Co\"\n        },\n        \"hiphi\": {\n            \"pl\": \"HiPhi\",\n            \"en\": \"HiPhi\"\n        },\n        \"elaris\": {\n            \"pl\": \"Elaris\",\n            \"en\": \"Elaris\"\n        },\n        \"lixiang\": {\n            \"pl\": \"Lixiang\",\n            \"en\": \"Lixiang\"\n        },\n        \"leapmotor\": {\n            \"pl\": \"Leapmotor\",\n            \"en\": \"Leapmotor\"\n        },\n        \"e-go\": {\n            \"pl\": \"e.GO\",\n            \"en\": \"e.GO\"\n        },\n        \"voyah\": {\n            \"pl\": \"Voyah\",\n            \"en\": \"Voyah\"\n        },\n        \"maximus\": {\n            \"pl\": \"MAXIMUS\",\n            \"en\": \"MAXIMUS\"\n        },\n        \"doosan\": {\n            \"pl\": \"Doosan\",\n            \"en\": \"Doosan\"\n        },\n        \"morgan\": {\n            \"pl\": \"Morgan\",\n            \"en\": \"Morgan\"\n        },\n        \"jinpeng\": {\n            \"pl\": \"Jinpeng\",\n            \"en\": \"Jinpeng\"\n        },\n        \"dfm\": {\n            \"pl\": \"DFM\",\n            \"en\": \"DFM\"\n        },\n        \"jac\": {\n            \"pl\": \"JAC\",\n            \"en\": \"JAC\"\n        },\n        \"fisker\": {\n            \"pl\": \"Fisker\",\n            \"en\": \"Fisker\"\n        },\n        \"omoda\": {\n            \"pl\": \"Omoda\",\n            \"en\": \"Omoda\"\n        },\n        \"saturn\": {\n            \"pl\": \"Saturn\",\n            \"en\": \"Saturn\"\n        },\n        \"jaecoo\": {\n            \"pl\": \"Jaecoo\",\n            \"en\": \"Jaecoo\"\n        },\n        \"forthing\": {\n            \"pl\": \"Forthing\",\n            \"en\": \"Forthing\"\n        },\n        \"arcfox\": {\n            \"pl\": \"Arcfox\",\n            \"en\": \"Arcfox\"\n        },\n        \"skyworth\": {\n            \"pl\": \"Skyworth\",\n            \"en\": \"Skyworth\"\n        },\n        \"sarini\": {\n            \"pl\": \"SARINI\",\n            \"en\": \"SARINI\"\n        },\n        \"xiaomi\": {\n            \"pl\": \"Xiaomi\",\n            \"en\": \"Xiaomi\"\n        },\n        \"avatr\": {\n            \"pl\": \"AVATR\",\n            \"en\": \"AVATR\"\n        },\n        \"zhidou\": {\n            \"pl\": \"Zhidou\",\n            \"en\": \"Zhidou\"\n        },\n        \"fendt\": {\n            \"pl\": \"FENDT\",\n            \"en\": \"FENDT\"\n        },\n        \"waltra\": {\n            \"pl\": \"WALTRA\",\n            \"en\": \"WALTRA\"\n        },\n        \"aito\": {\n            \"pl\": \"Aito\",\n            \"en\": \"Aito\"\n        },\n        \"denza\": {\n            \"pl\": \"Denza\",\n            \"en\": \"Denza\"\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "GET MODEL",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{base_url}}/categories/:category_id/models/:brand_code",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories",
								":category_id",
								"models",
								":brand_code"
							],
							"variable": [
								{
									"key": "category_id",
									"value": "29"
								},
								{
									"key": "brand_code",
									"value": "mercedes-benz"
								}
							]
						},
						"description": "Use this request to obtain all Models available in Otomoto for a specific Make.\n\n- 29 -> Cars\n    \n- 65 -> Motorcycles\n    \n\nValues the server expects:\n\n- category_id\n    \n- make"
					},
					"response": [
						{
							"name": "Get all MODELS from Make - Negative Response  (Incorrect Make)",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "www.otomoto.pl/open/api/categories/:category_id/models/:brand_code",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"categories",
										":category_id",
										"models",
										":brand_code"
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										},
										{
											"key": "brand_code",
											"value": "mercedes"
										}
									]
								}
							},
							"status": "Not Found",
							"code": 404,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 11:48:56 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "67"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=48943 t=1602762536012749"
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": {\n        \"type\": \"NotFoundException\",\n        \"message\": \"Models not found\"\n    }\n}"
						},
						{
							"name": "Get all MODELS from Make - Positive Response",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{base_url}}/categories/:category_id/models/:brand_code",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"categories",
										":category_id",
										"models",
										":brand_code"
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										},
										{
											"key": "brand_code",
											"value": "mercedes-benz"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Sun, 09 Mar 2025 16:14:03 GMT"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 0f538be1b5b41b4a59de471756ab50d4.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "WAW51-P4"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "xRQPMWIVxLHRoyEtKp1ujeREEhBDBixercKGYf6x0OS2oZyC9va93g=="
								}
							],
							"cookie": [],
							"body": "{\n    \"options\": {\n        \"280\": {\n            \"pl\": \"280\",\n            \"en\": \"280\"\n        },\n        \"w201-190\": {\n            \"pl\": \"W201 (190)\",\n            \"en\": \"W201 (190)\"\n        },\n        \"klasa-a\": {\n            \"pl\": \"Klasa A\",\n            \"en\": \"Klasa A\"\n        },\n        \"klasa-b\": {\n            \"pl\": \"Klasa B\",\n            \"en\": \"Klasa B\"\n        },\n        \"klasa-c\": {\n            \"pl\": \"Klasa C\",\n            \"en\": \"Klasa C\"\n        },\n        \"cl\": {\n            \"pl\": \"CL\",\n            \"en\": \"CL\"\n        },\n        \"clc\": {\n            \"pl\": \"CLC\",\n            \"en\": \"CLC\"\n        },\n        \"clk\": {\n            \"pl\": \"CLK\",\n            \"en\": \"CLK\"\n        },\n        \"cls\": {\n            \"pl\": \"CLS\",\n            \"en\": \"CLS\"\n        },\n        \"citan\": {\n            \"pl\": \"Citan\",\n            \"en\": \"Citan\"\n        },\n        \"cla\": {\n            \"pl\": \"CLA\",\n            \"en\": \"CLA\"\n        },\n        \"klasa-e\": {\n            \"pl\": \"Klasa E\",\n            \"en\": \"Klasa E\"\n        },\n        \"klasa-g\": {\n            \"pl\": \"Klasa G\",\n            \"en\": \"Klasa G\"\n        },\n        \"gl\": {\n            \"pl\": \"GL\",\n            \"en\": \"GL\"\n        },\n        \"gla\": {\n            \"pl\": \"GLA\",\n            \"en\": \"GLA\"\n        },\n        \"glk\": {\n            \"pl\": \"GLK\",\n            \"en\": \"GLK\"\n        },\n        \"ml\": {\n            \"pl\": \"ML\",\n            \"en\": \"ML\"\n        },\n        \"mb-100\": {\n            \"pl\": \"MB 100\",\n            \"en\": \"MB 100\"\n        },\n        \"monarch\": {\n            \"pl\": \"Monarch\",\n            \"en\": \"Monarch\"\n        },\n        \"klasa-r\": {\n            \"pl\": \"Klasa R\",\n            \"en\": \"Klasa R\"\n        },\n        \"klasa-s\": {\n            \"pl\": \"Klasa S\",\n            \"en\": \"Klasa S\"\n        },\n        \"sl\": {\n            \"pl\": \"SL\",\n            \"en\": \"SL\"\n        },\n        \"slk\": {\n            \"pl\": \"SLK\",\n            \"en\": \"SLK\"\n        },\n        \"slr\": {\n            \"pl\": \"SLR\",\n            \"en\": \"SLR\"\n        },\n        \"sprinter\": {\n            \"pl\": \"Sprinter\",\n            \"en\": \"Sprinter\"\n        },\n        \"klasa-v\": {\n            \"pl\": \"Klasa V\",\n            \"en\": \"Klasa V\"\n        },\n        \"vaneo\": {\n            \"pl\": \"Vaneo\",\n            \"en\": \"Vaneo\"\n        },\n        \"vario\": {\n            \"pl\": \"Vario\",\n            \"en\": \"Vario\"\n        },\n        \"viano\": {\n            \"pl\": \"Viano\",\n            \"en\": \"Viano\"\n        },\n        \"vito\": {\n            \"pl\": \"Vito\",\n            \"en\": \"Vito\"\n        },\n        \"w123\": {\n            \"pl\": \"W123\",\n            \"en\": \"W123\"\n        },\n        \"w124-1984-1993\": {\n            \"pl\": \"W124 (1984-1993)\",\n            \"en\": \"W124 (1984-1993)\"\n        },\n        \"other\": {\n            \"pl\": \"Inny\",\n            \"en\": \"other\"\n        },\n        \"amg-gt\": {\n            \"pl\": \"AMG GT\",\n            \"en\": \"AMG GT\"\n        },\n        \"glc\": {\n            \"pl\": \"GLC\",\n            \"en\": \"GLC\"\n        },\n        \"gle\": {\n            \"pl\": \"GLE\",\n            \"en\": \"GLE\"\n        },\n        \"gls\": {\n            \"pl\": \"GLS\",\n            \"en\": \"GLS\"\n        },\n        \"slc\": {\n            \"pl\": \"SLC\",\n            \"en\": \"SLC\"\n        },\n        \"x-klasa\": {\n            \"pl\": \"Klasa X\",\n            \"en\": \"Klasa X\"\n        },\n        \"sls\": {\n            \"pl\": \"SLS\",\n            \"en\": \"SLS\"\n        },\n        \"eqc\": {\n            \"pl\": \"EQC\",\n            \"en\": \"EQC\"\n        },\n        \"glb\": {\n            \"pl\": \"GLB\",\n            \"en\": \"GLB\"\n        },\n        \"eqv\": {\n            \"pl\": \"EQV\",\n            \"en\": \"EQV\"\n        },\n        \"eqa\": {\n            \"pl\": \"EQA\",\n            \"en\": \"EQA\"\n        },\n        \"eqs\": {\n            \"pl\": \"EQS\",\n            \"en\": \"EQS\"\n        },\n        \"eqb\": {\n            \"pl\": \"EQB\",\n            \"en\": \"EQB\"\n        },\n        \"eqe\": {\n            \"pl\": \"EQE\",\n            \"en\": \"EQE\"\n        },\n        \"t-klasa\": {\n            \"pl\": \"Klasa T\",\n            \"en\": \"Klasa T\"\n        },\n        \"cle\": {\n            \"pl\": \"CLE\",\n            \"en\": \"CLE\"\n        },\n        \"eqt\": {\n            \"pl\": \"EQT\",\n            \"en\": \"EQT\"\n        },\n        \"maybach-s680\": {\n            \"pl\": \"Maybach Klasa S\",\n            \"en\": \"Maybach Klasa S \"\n        },\n        \"eqs-680-suv\": {\n            \"pl\": \"EQS 680 SUV\",\n            \"en\": \"EQS 680 SUV\"\n        },\n        \"maybach-gls\": {\n            \"pl\": \"Maybach GLS\",\n            \"en\": \"Maybach GLS\"\n        },\n        \"maybach-sl-680\": {\n            \"pl\": \"Maybach SL 680\",\n            \"en\": \"Maybach SL 680\"\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "GET FUEL TYPE",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{base_url}}/categories/:category_id/models/:brand_code/fuel_types/:model_code/?year=2017&is_imported_car=1",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories",
								":category_id",
								"models",
								":brand_code",
								"fuel_types",
								":model_code",
								""
							],
							"query": [
								{
									"key": "year",
									"value": "2017"
								},
								{
									"key": "is_imported_car",
									"value": "1",
									"description": "#NEW# Use this query param to filter for imported cars info. This is not mandatory."
								}
							],
							"variable": [
								{
									"key": "category_id",
									"value": "29"
								},
								{
									"key": "brand_code",
									"value": "mercedes-benz"
								},
								{
									"key": "model_code",
									"value": "klasa-c"
								}
							]
						},
						"description": "Use this request to obtain all Fuel Types available in Otomoto for a specific Model.\n\nValues the server expects:\n\n- year\n    \n- category_id\n    \n- make\n    \n- model\n    \n\nAvailable Categories:\n\n- 29 -> Carros"
					},
					"response": [
						{
							"name": "GET FUEL TYPES - Positive Response",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "www.otomoto.pl/open/api/categories/:category_id/models/:brand_code/fuel_types/:model_code/?year=2017",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"categories",
										":category_id",
										"models",
										":brand_code",
										"fuel_types",
										":model_code",
										""
									],
									"query": [
										{
											"key": "year",
											"value": "2017"
										}
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										},
										{
											"key": "brand_code",
											"value": "mercedes-benz"
										},
										{
											"key": "model_code",
											"value": "klasa-c"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Fri, 07 Mar 2025 14:26:33 GMT"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 a9efd2ba7f7f538e6864c6d2ac364c86.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "WAW51-P4"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "DGV87PAiUZB-LvkdjLlwlLByKSBRyT1WMC86lYnycl2ev3I9wwz8BQ=="
								}
							],
							"cookie": [],
							"body": "{\n    \"options\": {\n        \"petrol\": {\n            \"pl\": \"Benzyna\",\n            \"en\": \"Benzyna\"\n        },\n        \"petrol-lpg\": {\n            \"pl\": \"Benzyna+LPG\",\n            \"en\": \"Benzyna+LPG\"\n        },\n        \"diesel\": {\n            \"pl\": \"Diesel\",\n            \"en\": \"Diesel\"\n        },\n        \"hybrid\": {\n            \"pl\": \"Hybryda\",\n            \"en\": \"Hybryda\"\n        },\n        \"plugin-hybrid\": {\n            \"pl\": \"Plug-In Hybryda\",\n            \"en\": \"Plug-In Hybryda\"\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "GET ENGINE POWER",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{base_url}}/categories/:category_id/models/:brand_code/engine_powers/:model_code?year=2017&fuel_type=diesel&is_imported_car=1",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories",
								":category_id",
								"models",
								":brand_code",
								"engine_powers",
								":model_code"
							],
							"query": [
								{
									"key": "year",
									"value": "2017"
								},
								{
									"key": "fuel_type",
									"value": "diesel"
								},
								{
									"key": "is_imported_car",
									"value": "1",
									"description": "#NEW# Use this query param to filter for imported cars info. This is not mandatory."
								}
							],
							"variable": [
								{
									"key": "category_id",
									"value": "29"
								},
								{
									"key": "brand_code",
									"value": "mercedes-benz"
								},
								{
									"key": "model_code",
									"value": "klasa-c"
								}
							]
						},
						"description": "Use this request to obtain all Engine Powers available in Otomoto for a specific Model.\n\nValues the server expects:\n\n- year\n    \n- category_id\n    \n- make\n    \n- model\n    \n- fuel_type\n    \n\nNote: This only applies to the \"Cars\" category, so you'll always use the category_id -> 29.\n\nAvailable Categories:\n\n- 29 -> Cars"
					},
					"response": [
						{
							"name": "GET ENGINE POWER - Positive Response",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "www.otomoto.pl/open/api/categories/:category_id/models/:brand_code/engine_powers/:model_code?year=2017&fuel_type=diesel",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"categories",
										":category_id",
										"models",
										":brand_code",
										"engine_powers",
										":model_code"
									],
									"query": [
										{
											"key": "year",
											"value": "2017"
										},
										{
											"key": "fuel_type",
											"value": "diesel"
										}
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										},
										{
											"key": "brand_code",
											"value": "mercedes-benz"
										},
										{
											"key": "model_code",
											"value": "c-220"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Fri, 07 Mar 2025 14:26:49 GMT"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 a9efd2ba7f7f538e6864c6d2ac364c86.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "WAW51-P4"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "CH_tNUSIRifb63rJijNdoU1aZRJymVutcRkBDYfizp-kXg0_vJINYQ=="
								}
							],
							"cookie": [],
							"body": "{\n    \"options\": {\n        \"116\": {\n            \"pl\": \"116 KM (85 kW)\",\n            \"en\": \"116 KM (85 kW)\"\n        },\n        \"122\": {\n            \"pl\": \"122 KM (90 kW)\",\n            \"en\": \"122 KM (90 kW)\"\n        },\n        \"136\": {\n            \"pl\": \"136 KM (100 kW)\",\n            \"en\": \"136 KM (100 kW)\"\n        },\n        \"150\": {\n            \"pl\": \"150 KM (110 kW)\",\n            \"en\": \"150 KM (110 kW)\"\n        },\n        \"160\": {\n            \"pl\": \"160 KM (118 kW)\",\n            \"en\": \"160 KM (118 kW)\"\n        },\n        \"163\": {\n            \"pl\": \"163 KM (120 kW)\",\n            \"en\": \"163 KM (120 kW)\"\n        },\n        \"170\": {\n            \"pl\": \"170 KM (125 kW)\",\n            \"en\": \"170 KM (125 kW)\"\n        },\n        \"194\": {\n            \"pl\": \"194 KM (143 kW)\",\n            \"en\": \"194 KM (143 kW)\"\n        },\n        \"197\": {\n            \"pl\": \"197 KM (145 kW)\",\n            \"en\": \"197 KM (145 kW)\"\n        },\n        \"200\": {\n            \"pl\": \"200 KM (147 kW)\",\n            \"en\": \"200 KM (147 kW)\"\n        },\n        \"204\": {\n            \"pl\": \"204 KM (150 kW)\",\n            \"en\": \"204 KM (150 kW)\"\n        },\n        \"245\": {\n            \"pl\": \"245 KM (180 kW)\",\n            \"en\": \"245 KM (180 kW)\"\n        },\n        \"265\": {\n            \"pl\": \"265 KM (195 kW)\",\n            \"en\": \"265 KM (195 kW)\"\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "GET ENGINE CAPACITY",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{base_url}}/categories/:category_id/models/:brand_code/engine_capacities/:model_code?year=2017&fuel_type=diesel&engine_power=116&is_imported_car=1",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories",
								":category_id",
								"models",
								":brand_code",
								"engine_capacities",
								":model_code"
							],
							"query": [
								{
									"key": "year",
									"value": "2017"
								},
								{
									"key": "fuel_type",
									"value": "diesel"
								},
								{
									"key": "engine_power",
									"value": "116"
								},
								{
									"key": "is_imported_car",
									"value": "1",
									"description": "#NEW# Use this query param to filter for imported cars info. This is not mandatory."
								}
							],
							"variable": [
								{
									"key": "category_id",
									"value": "29"
								},
								{
									"key": "brand_code",
									"value": "mercedes-benz"
								},
								{
									"key": "model_code",
									"value": "klasa-c"
								}
							]
						},
						"description": "Use this request to obtain all Engine Capacities available in Otomoto for a specific Model.\n\nValues the server expects:\n\n- year\n    \n- category_id\n    \n- make\n    \n- model\n    \n- fuel_type\n    \n- engine_power\n    \n\nAvailable Categories:\n\n- 29 -> Cars"
					},
					"response": [
						{
							"name": "GET ENGINE CAPACITY - Positive Response",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "www.otomoto.pl/open/api/categories/:category_id/models/:brand_code/engine_capacities/:model_code?year=2017&fuel_type=diesel&engine_power=116",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"categories",
										":category_id",
										"models",
										":brand_code",
										"engine_capacities",
										":model_code"
									],
									"query": [
										{
											"key": "year",
											"value": "2017"
										},
										{
											"key": "fuel_type",
											"value": "diesel"
										},
										{
											"key": "engine_power",
											"value": "116"
										}
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										},
										{
											"key": "brand_code",
											"value": "mercedes-benz"
										},
										{
											"key": "model_code",
											"value": "klasa-c"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Fri, 07 Mar 2025 14:26:57 GMT"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 a9efd2ba7f7f538e6864c6d2ac364c86.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "WAW51-P4"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "NzdAN8K0KCwGtUjaatT-bxoli3eGvqHqruU8xbSRPmDfqkgvskrRTA=="
								}
							],
							"cookie": [],
							"body": "{\n    \"options\": {\n        \"1598\": {\n            \"pl\": \"1598\",\n            \"en\": \"1598\"\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "GET NUMBER OF DOORS",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{base_url}}/categories/:category_id/models/:brand_code/door_counts/:model_code?year=2017&fuel_type=diesel&engine_power=116&engine_capacity=1598&is_imported_car=1",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories",
								":category_id",
								"models",
								":brand_code",
								"door_counts",
								":model_code"
							],
							"query": [
								{
									"key": "year",
									"value": "2017"
								},
								{
									"key": "fuel_type",
									"value": "diesel"
								},
								{
									"key": "engine_power",
									"value": "116"
								},
								{
									"key": "engine_capacity",
									"value": "1598"
								},
								{
									"key": "is_imported_car",
									"value": "1",
									"description": "#NEW# Use this query param to filter for imported cars info. This is not mandatory."
								}
							],
							"variable": [
								{
									"key": "category_id",
									"value": "29"
								},
								{
									"key": "brand_code",
									"value": "mercedes-benz"
								},
								{
									"key": "model_code",
									"value": "klasa-c"
								}
							]
						},
						"description": "Use this request to obtain Number of Doors available in Otomoto for a specific Model.\n\nValues the server expects:\n\n- year\n    \n- category_id\n    \n- make\n    \n- model\n    \n- fuel_type\n    \n- engine_power\n    \n- engine_capacity\n    \n\nAvailable Categories:\n\n- 29 -> Cars"
					},
					"response": [
						{
							"name": "GET NUMBER OF DOORS",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "www.otomoto.pl/open/api/categories/:category_id/models/:brand_code/door_counts/:model_code?year=2017&fuel_type=diesel&engine_power=116&engine_capacity=1598&is_imported_car=1",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"categories",
										":category_id",
										"models",
										":brand_code",
										"door_counts",
										":model_code"
									],
									"query": [
										{
											"key": "year",
											"value": "2017"
										},
										{
											"key": "fuel_type",
											"value": "diesel"
										},
										{
											"key": "engine_power",
											"value": "116"
										},
										{
											"key": "engine_capacity",
											"value": "1598"
										},
										{
											"key": "is_imported_car",
											"value": "1",
											"description": "#NEW# Use this query param to filter for imported cars info. This is not mandatory."
										}
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										},
										{
											"key": "brand_code",
											"value": "mercedes-benz"
										},
										{
											"key": "model_code",
											"value": "klasa-c"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Sun, 09 Mar 2025 16:24:38 GMT"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 0f538be1b5b41b4a59de471756ab50d4.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "WAW51-P4"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "QmivfcJVIvW4ZJfE4Lz_-1LoGTOkFPAp01r8lLu-bgPYLk09HxH1Qg=="
								}
							],
							"cookie": [],
							"body": "{\n    \"options\": {\n        \"4\": {\n            \"pl\": \"4\",\n            \"en\": \"4\"\n        },\n        \"5\": {\n            \"pl\": \"5\",\n            \"en\": \"5\"\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "GET GEARBOX TYPES",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{base_url}}/categories/:category_id/models/:brand_code/gearboxes/:model_code?year=2017&fuel_type=diesel&engine_power=116&engine_capacity=1598&door_count=4&is_imported_car=1",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories",
								":category_id",
								"models",
								":brand_code",
								"gearboxes",
								":model_code"
							],
							"query": [
								{
									"key": "year",
									"value": "2017"
								},
								{
									"key": "fuel_type",
									"value": "diesel"
								},
								{
									"key": "engine_power",
									"value": "116"
								},
								{
									"key": "engine_capacity",
									"value": "1598"
								},
								{
									"key": "door_count",
									"value": "4"
								},
								{
									"key": "is_imported_car",
									"value": "1",
									"description": "#NEW# Use this query param to filter for imported cars info. This is not mandatory."
								}
							],
							"variable": [
								{
									"key": "category_id",
									"value": "29"
								},
								{
									"key": "brand_code",
									"value": "mercedes-benz"
								},
								{
									"key": "model_code",
									"value": "klasa-c"
								}
							]
						},
						"description": "Use this request to obtain all Gearbox types available in Otomoto for a specific Model.\n\nValues the server expects:\n\n\\-year  \n\\-category_id  \n\\-make  \n\\-model  \n\\-fuel_type  \n\\-engine_power  \n\\-engine_capacity  \n\\-door_count\n\nNote: This only applies to the \"Cars\" category, so you'll always use the category_id -> 29."
					},
					"response": [
						{
							"name": "GET GEARBOX TYPES - Positive Response",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "www.otomoto.pl/open/api/categories/:category_id/models/:brand_code/gearboxes/:model_code?year=2017&fuel_type=diesel&engine_power=116&engine_capacity=1598&door_count=4&is_imported_car=1",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"categories",
										":category_id",
										"models",
										":brand_code",
										"gearboxes",
										":model_code"
									],
									"query": [
										{
											"key": "year",
											"value": "2017"
										},
										{
											"key": "fuel_type",
											"value": "diesel"
										},
										{
											"key": "engine_power",
											"value": "116"
										},
										{
											"key": "engine_capacity",
											"value": "1598"
										},
										{
											"key": "door_count",
											"value": "4"
										},
										{
											"key": "is_imported_car",
											"value": "1",
											"description": "#NEW# Use this query param to filter for imported cars info. This is not mandatory."
										}
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										},
										{
											"key": "brand_code",
											"value": "mercedes-benz"
										},
										{
											"key": "model_code",
											"value": "klasa-c"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Sun, 09 Mar 2025 16:27:52 GMT"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 0f538be1b5b41b4a59de471756ab50d4.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "WAW51-P4"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "ghexbP6c8gCEyv6KXPEY1x9uQXDDQuk44B-gI9vbKsTKAH56slig6Q=="
								}
							],
							"cookie": [],
							"body": "{\n    \"options\": {\n        \"automatic\": {\n            \"pl\": \"Automatyczna\",\n            \"en\": \"Automatyczna\"\n        },\n        \"manual\": {\n            \"pl\": \"Manualna\",\n            \"en\": \"Manualna\"\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "GET VERSIONS",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{base_url}}/categories/:category_id/models/:brand_code/versions/:model_code?year=2017&fuel_type=diesel&engine_power=116&engine_capacity=1598&door_count=4&is_imported_car=1",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories",
								":category_id",
								"models",
								":brand_code",
								"versions",
								":model_code"
							],
							"query": [
								{
									"key": "year",
									"value": "2017"
								},
								{
									"key": "fuel_type",
									"value": "diesel"
								},
								{
									"key": "engine_power",
									"value": "116"
								},
								{
									"key": "engine_capacity",
									"value": "1598"
								},
								{
									"key": "door_count",
									"value": "4"
								},
								{
									"key": "is_imported_car",
									"value": "1",
									"description": "#NEW# Use this query param to filter for imported cars info. This is not mandatory."
								},
								{
									"key": "v",
									"value": "2",
									"disabled": true
								}
							],
							"variable": [
								{
									"key": "category_id",
									"value": "29"
								},
								{
									"key": "brand_code",
									"value": "mercedes-benz"
								},
								{
									"key": "model_code",
									"value": "klasa-c"
								}
							]
						},
						"description": "Use this request to obtain all Versions available in Otomoto for a specific Model.\n\nValues the server expects:\n\n- year\n    \n- category_id\n    \n- make\n    \n- model\n    \n- fuel_type\n    \n- engine_power\n    \n- engine_capacity\n    \n- door_count\n    \n- V -> 2\n    \n\nAvailable Categories:\n\n- 29 -> Cars"
					},
					"response": [
						{
							"name": "GET VERSIONS - Positive Response",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "www.otomoto.pl/open/api/categories/:category_id/models/:brand_code/versions/:model_code?year=2017&fuel_type=diesel&engine_power=116&engine_capacity=1598&door_count=4&v=2",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"categories",
										":category_id",
										"models",
										":brand_code",
										"versions",
										":model_code"
									],
									"query": [
										{
											"key": "year",
											"value": "2017"
										},
										{
											"key": "fuel_type",
											"value": "diesel"
										},
										{
											"key": "engine_power",
											"value": "116"
										},
										{
											"key": "engine_capacity",
											"value": "1598"
										},
										{
											"key": "door_count",
											"value": "4"
										},
										{
											"key": "v",
											"value": "2"
										}
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										},
										{
											"key": "brand_code",
											"value": "mercedes-benz"
										},
										{
											"key": "model_code",
											"value": "klasa-c"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Fri, 07 Mar 2025 14:27:36 GMT"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 a9efd2ba7f7f538e6864c6d2ac364c86.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "WAW51-P4"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "dU48bu92DkG42OO1Lhu8JmrlW8kIJIckt3-pVWCYgwjaaxioXeFVqQ=="
								}
							],
							"cookie": [],
							"body": "{\n    \"options\": {\n        \"other\": {\n            \"pl\": \"Inne\",\n            \"en\": \"Other\"\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "GET GENERATIONS",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{base_url}}/categories/:category_id/models/:brand_code/generations/:model_code?year=2017&fuel_type=diesel&engine_power=116&engine_capacity=1598&door_count=4&is_imported_car=1",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories",
								":category_id",
								"models",
								":brand_code",
								"generations",
								":model_code"
							],
							"query": [
								{
									"key": "year",
									"value": "2017"
								},
								{
									"key": "fuel_type",
									"value": "diesel"
								},
								{
									"key": "engine_power",
									"value": "116"
								},
								{
									"key": "engine_capacity",
									"value": "1598"
								},
								{
									"key": "door_count",
									"value": "4"
								},
								{
									"key": "is_imported_car",
									"value": "1",
									"description": "#NEW# Use this query param to filter for imported cars info. This is not mandatory."
								},
								{
									"key": "v",
									"value": "2",
									"disabled": true
								}
							],
							"variable": [
								{
									"key": "category_id",
									"value": "29"
								},
								{
									"key": "brand_code",
									"value": "mercedes-benz"
								},
								{
									"key": "model_code",
									"value": "klasa-c"
								}
							]
						},
						"description": "Use this request to obtain all Versions available in Otomoto for a specific Model.\n\nValues the server expects:\n\n- year\n    \n- category_id\n    \n- make\n    \n- model\n    \n- fuel_type\n    \n- engine_power\n    \n- engine_capacity\n    \n- door_count\n    \n- V -> 2\n    \n\nAvailable Categories:\n\n- 29 -> Cars"
					},
					"response": [
						{
							"name": "GET VERSIONS - Positive Response",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "www.otomoto.pl/open/api/categories/:category_id/models/:brand_code/versions/:model_code?year=2017&fuel_type=diesel&engine_power=116&engine_capacity=1598&door_count=4&v=2",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"categories",
										":category_id",
										"models",
										":brand_code",
										"versions",
										":model_code"
									],
									"query": [
										{
											"key": "year",
											"value": "2017"
										},
										{
											"key": "fuel_type",
											"value": "diesel"
										},
										{
											"key": "engine_power",
											"value": "116"
										},
										{
											"key": "engine_capacity",
											"value": "1598"
										},
										{
											"key": "door_count",
											"value": "4"
										},
										{
											"key": "v",
											"value": "2"
										}
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										},
										{
											"key": "brand_code",
											"value": "mercedes-benz"
										},
										{
											"key": "model_code",
											"value": "klasa-c"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Fri, 07 Mar 2025 14:27:55 GMT"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 9f886054ff6f095f177ce8fc0f0175ee.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "WAW51-P4"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "qO5c4fEkueP5jN-E_4QqG0GzpFm0SdQg5wfl1Xl8yrm1yvgpE9HX0w=="
								}
							],
							"cookie": [],
							"body": "{\n    \"options\": {\n        \"gen-w202-1993-2001\": {\n            \"pl\": \"W202 (1993-2001)\",\n            \"en\": \"W202 (1993-2001)\"\n        },\n        \"gen-w203-2000-2007\": {\n            \"pl\": \"W203 (2000-2007)\",\n            \"en\": \"W203 (2000-2007)\"\n        },\n        \"gen-w204-2007-2014\": {\n            \"pl\": \"W204 (2007-2014)\",\n            \"en\": \"W204 (2007-2014)\"\n        },\n        \"gen-w205-2014\": {\n            \"pl\": \"W205 (2014-2021)\",\n            \"en\": \"W205 (2014-2021)\"\n        },\n        \"gen-w206-2021\": {\n            \"pl\": \"W206 (2021-)\",\n            \"en\": \"W206 (2021-)\"\n        }\n    }\n}"
						},
						{
							"name": "GET VERSIONS - Negative Response (No versions found for given data)",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/x-www-form-urlencoded",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{base_url}}/categories/:category_id/models/:brand_code/versions/:model_code?year=2017&fuel_type=diesel&engine_power=163&engine_capacity=2143&door_count=4&v=",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"categories",
										":category_id",
										"models",
										":brand_code",
										"versions",
										":model_code"
									],
									"query": [
										{
											"key": "year",
											"value": "2017"
										},
										{
											"key": "fuel_type",
											"value": "diesel"
										},
										{
											"key": "engine_power",
											"value": "163"
										},
										{
											"key": "engine_capacity",
											"value": "2143"
										},
										{
											"key": "door_count",
											"value": "4"
										},
										{
											"key": "v",
											"value": ""
										}
									],
									"variable": [
										{
											"key": "category_id",
											"value": "29"
										},
										{
											"key": "brand_code",
											"value": "mercedes-benz"
										},
										{
											"key": "model_code",
											"value": "c-220"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Fri, 07 Mar 2025 14:28:02 GMT"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 9f886054ff6f095f177ce8fc0f0175ee.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "WAW51-P4"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "Qg8ZxeBqh2GqF1k0MoJPy8bTorBrV0qzeP3_q63rtgktuXhX3sMg1g=="
								}
							],
							"cookie": [],
							"body": "{\n    \"options\": {\n        \"other\": {\n            \"pl\": \"Inne\",\n            \"en\": \"Other\"\n        }\n    }\n}"
						}
					]
				}
			],
			"description": "How to obtain vehicle information from Otomoto.\n\nAll these requests are used to obtain catalog information for vehicles. This information is stored on Otomoto's side and is crucial that the data sent in the adverts match the data on the end side, so that the advert is properly placed with catalog information.\n\nThe logic behind these requests is that you will need to chain each request to the next request:\n\n```\nSend us the Category ID -> GET MAKE\nSend us the Category ID & Make -> GET MODEL \nSend us the Category ID & Make & Model & Year -> GET FUEL TYPE \nSend us the Category ID & Make & Model & Year & Fuel Type -> GET ENGINE POWER \nSend us the Category ID & Make & Model & Year & Fuel Type & Engine Power -> GET ENGINE CAPACITY\nSend us the Category ID & Make & Model & Year & Fuel Type & Engine Power & Engine Capacity -> GET NUMBER OF DOORS   \nSend us the Category ID & Make & Model & Year & Fuel Type & Engine Power & Engine Capacity & Number of Doors -> GET VERSION\nSend us the Category ID & Make & Model & Year & Fuel Type & Engine Power & Engine Capacity & Number of Doors -> GET GENERATION\n\n ```\n\nIn the end, you have the correct catalog information for the car to be published (make, model, fuel_type, power, engine_capacity, number_door, version and generation).",
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "CATEGORY INFO",
			"item": [
				{
					"name": "CHECK CATEGORIES",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript",
								"packages": {}
							}
						},
						{
							"listen": "prerequest",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true,
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "User-Agent",
								"value": "O/x.d3v0.12",
								"disabled": true
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/categories",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories"
							],
							"query": [
								{
									"key": "v",
									"value": "2",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "READ CATEGORY PARAMETERS",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript",
								"packages": {}
							}
						},
						{
							"listen": "prerequest",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true,
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "User-Agent",
								"value": "O/x.d3v0.12",
								"disabled": true
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/categories/:id",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"categories",
								":id"
							],
							"query": [
								{
									"key": "v",
									"value": "2",
									"disabled": true
								}
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			],
			"description": "How to obtain category information from Otomoto.\n\nCategory is a crucial term to understand how Adverts are classified. Conceptually, each advert is assigned to single category which holds set of bound parameters. All categories form together a tree starting from general root node (eg. car) going down narrowing and describing levels to be more specific."
		},
		{
			"name": "CREATING AN ADVERT",
			"item": [
				{
					"name": "CREATE IMAGE COLLECTION",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "X-BULK-ERROR",
								"value": "PER_ITEM",
								"description": "Using this header will skip an image if for some reason it's unavailable, rather than getting a bad request response because one image is corrupted or missing.",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"1\": \"https://i.ibb.co/ZJRyVyk/2BARCH6.jpg\",\n\t\"2\": \"https://i.ibb.co/rcTrxLc/2BARCH9.jpg\",\n\t\"3\": \"https://i.ibb.co/tB64yRy/2BARCHE.jpg\",\n\t\"4\": \"https://i.ibb.co/my3tVmk/2BARCHN.jpg\"\n}\n\n"
						},
						"url": {
							"raw": "{{base_url}}/imageCollections/",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"imageCollections",
								""
							]
						},
						"description": "Use this request to create image collection.\n\nAn image collection is colection of pictures of the vehicle/part that we store on our side.\n\nAfter sending us all the image URL's you want to place in the advert (by order), we will provide you with an ID for that image collection. Afterwards you will use this ID in the advert's creation request in order to tell us what images we should use in that advert.\n\nNote that all image URL's must be public so that our server can access them and make a copy.\n\n"
					},
					"response": [
						{
							"name": "Create Image Collections - Positive Response",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": ""
									},
									{
										"key": "Content-Type",
										"value": "application/json",
										"name": "Content-Type",
										"type": "text"
									},
									{
										"key": "User-Agent",
										"value": "O/x.d3v0.12",
										"disabled": true
									},
									{
										"key": "X-BULK-ERROR",
										"value": "PER_ITEM",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n\t\"1\": \"https://i.ibb.co/ZJRyVyk/2BARCH6.jpg\",\n\t\"2\": \"https://i.ibb.co/rcTrxLc/2BARCH9.jpg\",\n\t\"3\": \"https://i.ibb.co/tB64yRy/2BARCHE.jpg\",\n\t\"4\": \"https://i.ibb.co/my3tVmk/2BARCHN.jpg\"\n}\n\n"
								},
								"url": {
									"raw": "www.otomoto.pl/open/api/imageCollections/",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"imageCollections",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 12:05:33 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Content-Length",
									"value": "3325"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Location",
									"value": "https://sbcarspt.playground.lisbontechhub.com/api/open/imageCollections/424187"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=3188605 t=1602763530596195"
								}
							],
							"cookie": [],
							"body": "{\n    \"id\": \"424187\",\n    \"images\": {\n        \"1\": {\n            \"0\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdxaXkxZGJ2dmNiNS1TVERWVExQVFNCIn0.uVv6CzGQKgOYGGXDNdziktVb85OraONSmexr0qrHwJs/image;s=732x488\",\n            \"1\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdxaXkxZGJ2dmNiNS1TVERWVExQVFNCIn0.uVv6CzGQKgOYGGXDNdziktVb85OraONSmexr0qrHwJs/image;s=148x110\",\n            \"2\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdxaXkxZGJ2dmNiNS1TVERWVExQVFNCIn0.uVv6CzGQKgOYGGXDNdziktVb85OraONSmexr0qrHwJs/image;s=320x240\",\n            \"3\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdxaXkxZGJ2dmNiNS1TVERWVExQVFNCIn0.uVv6CzGQKgOYGGXDNdziktVb85OraONSmexr0qrHwJs/image;s=1080x720\",\n            \"4\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdxaXkxZGJ2dmNiNS1TVERWVExQVFNCIn0.uVv6CzGQKgOYGGXDNdziktVb85OraONSmexr0qrHwJs/image;s=1280x800\"\n        },\n        \"2\": {\n            \"0\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjBkbDdjMzBvNHgxdzMtU1REVlRMUFRTQiJ9.tZC5JflQwGp_6shF4XjTkQb0uCassl5JgdeZG87Rb7Y/image;s=732x488\",\n            \"1\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjBkbDdjMzBvNHgxdzMtU1REVlRMUFRTQiJ9.tZC5JflQwGp_6shF4XjTkQb0uCassl5JgdeZG87Rb7Y/image;s=148x110\",\n            \"2\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjBkbDdjMzBvNHgxdzMtU1REVlRMUFRTQiJ9.tZC5JflQwGp_6shF4XjTkQb0uCassl5JgdeZG87Rb7Y/image;s=320x240\",\n            \"3\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjBkbDdjMzBvNHgxdzMtU1REVlRMUFRTQiJ9.tZC5JflQwGp_6shF4XjTkQb0uCassl5JgdeZG87Rb7Y/image;s=1080x720\",\n            \"4\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjBkbDdjMzBvNHgxdzMtU1REVlRMUFRTQiJ9.tZC5JflQwGp_6shF4XjTkQb0uCassl5JgdeZG87Rb7Y/image;s=1280x800\"\n        },\n        \"3\": {\n            \"0\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjA5Z2c1d3EzeHE0aDItU1REVlRMUFRTQiJ9.jJjoYpdKpl8zaCcP-w1TSBX8Uh-whJv1M38WmMeSVoo/image;s=732x488\",\n            \"1\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjA5Z2c1d3EzeHE0aDItU1REVlRMUFRTQiJ9.jJjoYpdKpl8zaCcP-w1TSBX8Uh-whJv1M38WmMeSVoo/image;s=148x110\",\n            \"2\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjA5Z2c1d3EzeHE0aDItU1REVlRMUFRTQiJ9.jJjoYpdKpl8zaCcP-w1TSBX8Uh-whJv1M38WmMeSVoo/image;s=320x240\",\n            \"3\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjA5Z2c1d3EzeHE0aDItU1REVlRMUFRTQiJ9.jJjoYpdKpl8zaCcP-w1TSBX8Uh-whJv1M38WmMeSVoo/image;s=1080x720\",\n            \"4\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjA5Z2c1d3EzeHE0aDItU1REVlRMUFRTQiJ9.jJjoYpdKpl8zaCcP-w1TSBX8Uh-whJv1M38WmMeSVoo/image;s=1280x800\"\n        },\n        \"4\": {\n            \"0\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdhM2JyMG9xMXkycjItU1REVlRMUFRTQiJ9.5-818vg3mMZqANXCLVqHJvSjHwzE1WMZTTbYRpnpxuc/image;s=732x488\",\n            \"1\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdhM2JyMG9xMXkycjItU1REVlRMUFRTQiJ9.5-818vg3mMZqANXCLVqHJvSjHwzE1WMZTTbYRpnpxuc/image;s=148x110\",\n            \"2\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdhM2JyMG9xMXkycjItU1REVlRMUFRTQiJ9.5-818vg3mMZqANXCLVqHJvSjHwzE1WMZTTbYRpnpxuc/image;s=320x240\",\n            \"3\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdhM2JyMG9xMXkycjItU1REVlRMUFRTQiJ9.5-818vg3mMZqANXCLVqHJvSjHwzE1WMZTTbYRpnpxuc/image;s=1080x720\",\n            \"4\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdhM2JyMG9xMXkycjItU1REVlRMUFRTQiJ9.5-818vg3mMZqANXCLVqHJvSjHwzE1WMZTTbYRpnpxuc/image;s=1280x800\"\n        }\n    },\n    \"errors\": []\n}"
						},
						{
							"name": "Create Image Collections - Negative Response",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": "{{token}}"
									},
									{
										"key": "Content-Type",
										"value": "application/json",
										"name": "Content-Type",
										"type": "text"
									},
									{
										"key": "User-Agent",
										"value": "O/x.d3v0.12",
										"disabled": true
									},
									{
										"key": "X-BULK-ERROR",
										"value": "PER_ITEM",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \n}\n\n"
								},
								"url": {
									"raw": "{{base_url}}/imageCollections/",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"imageCollections",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 12:06:29 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "73"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=54673 t=1602763589020494"
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": {\n        \"type\": \"BadRequestException\",\n        \"message\": \"Images not specified\"\n    }\n}"
						}
					]
				},
				{
					"name": "CREATE ADVERT",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript",
								"packages": {}
							}
						},
						{
							"listen": "prerequest",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"title\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\n  \"description\": \"Hello World. This is a description. Minimum char count -> 30, Maximum cat amount -> 60000\",\n  \"category_id\": 29,\n  \"params\": {\n    \"has_vin\": \"1\",\n    \"is_imported_car\": 1,\n    \"has_registration\": \"1\",\n    \"cepik_authorization\": \"1\",\n    \"towbar\": \"1\",\n    \"make\": \"skoda\",\n    \"model\": \"octavia\",\n    \"video\": \"https://www.youtube.com/watch?v=IyixdWxTH8g\",\n    \"version\": \"ver-1-5-tsi-e--tec-dsg-ambition\",\n    \"generation\": \"gen-iv-2019-octavia\",\n    \"apple_carplay\": \"1\",\n    \"year\": 2023,\n    \"mileage\": 1000,\n    \"engine_capacity\": 1498,\n    \"vin\": \"TESTC000021370000\",\n    \"fuel_type\": \"petrol\",\n    \"engine_power\": 150,\n    \"gearbox\": \"automatic\",\n    \"android_auto\": \"1\",\n    \"transmission\": \"front-wheel\",\n    \"particle_filter\": \"1\",\n    \"bluetooth_interface\": \"1\",\n    \"damaged\": \"0\",\n    \"body_type\": \"combi\",\n    \"co2_emissions\": 20,\n    \"door_count\": \"5\",\n    \"nr_seats\": \"5\",\n    \"color\": \"brown-beige\",\n    \"colour_type\": \"matt\",\n    \"radio\": \"1\",\n    \"rhd\": \"0\",\n    \"price\": {\n      \"0\": \"price\",\n      \"1\": 99999,\n      \"currency\": \"PLN\",\n      \"gross_net\": \"gross\"\n    },\n    \"hands_free_system\": \"1\",\n    \"usb_in\": \"1\",\n    \"maker_warranty_valid_until_date\": \"2026-02-02\",\n    \"maker_warranty_valid_until_km\": 10000,\n    \"vendors_warranty_valid_until_date\": 24,\n    \"country_origin\": \"pl\",\n    \"date_registration\": \"2023-01-02\",\n    \"wireless_device_charging\": \"1\",\n    \"registration\": \"TEST2137\",\n    \"registered\": \"1\",\n    \"original_owner\": \"1\",\n    \"no_accident\": \"1\",\n    \"service_record\": \"1\",\n    \"navigation_system\": \"1\",\n    \"historical_vehicle\": \"1\",\n    \"tuning\": \"1\",\n    \"approval_for_goods\": \"1\",\n    \"soundsystem\": \"1\",\n    \"head_up_display\": \"1\",\n    \"touchscreen_monitor\": \"1\",\n    \"voice_control_for_vehicle_functions\": \"1\",\n    \"internet_access\": \"1\",\n    \"air_conditioning_type\": \"dualzone-automatic-climate-control\",\n    \"convertible_top_type\": \"textile-top\",\n    \"sunblind_type\": \"sunblind-rear-side-door-electric\",\n    \"sunroof\": \"glass-sunroof-fixed\",\n    \"upholstery_type\": \"textile-upholstery\",\n    \"air_condition_rear\": \"1\",\n    \"driver_seat_electrically_adjustable\": \"1\",\n    \"passenger_seat_electrically_adjustable\": \"1\",\n    \"heated_seat_driver\": \"1\",\n    \"heated_seat_passenger\": \"1\",\n    \"lumbar_adjust_driver_electric\": \"1\",\n    \"lumbar_adjust_passenger_electric\": \"1\",\n    \"ventilated_front_seat\": \"1\",\n    \"front_seat_with_massage\": \"1\",\n    \"memory_seat\": \"1\",\n    \"sport_seats_front\": \"1\",\n    \"rear_seat_heating\": \"1\",\n    \"ventilated_rear_seat\": \"1\",\n    \"rear_seat_with_massage\": \"1\",\n    \"armrest_front\": \"1\",\n    \"armrest_rear\": \"1\",\n    \"leather_steering_wheel\": \"1\",\n    \"sports_steering_wheel\": \"1\",\n    \"steering_wheel_with_radio_operation\": \"1\",\n    \"steering_wheel_electrically_adjustable\": \"1\",\n    \"multi_functional_steering_wheel\": \"1\",\n    \"steering_wheel_heated\": \"1\",\n    \"steering_wheel_with_gear_switches\": \"1\",\n    \"leather_gearshifterswitch\": \"1\",\n    \"digital_key\": \"1\",\n    \"keyless_entry\": \"1\",\n    \"keyless_go\": \"1\",\n    \"keyless_engine_start\": \"1\",\n    \"independent_vehicle_heater\": \"1\",\n    \"automatic_heating_control\": \"1\",\n    \"rain_sensor\": \"1\",\n    \"windscreen_heating\": \"1\",\n    \"power_windows_front\": \"1\",\n    \"power_windows_rear\": \"1\",\n    \"tinted_rear_windows\": \"1\",\n    \"windscreenwiper_other\": \"1\",\n    \"top_electrically_operated\": \"1\",\n    \"top_remote_controlled\": \"1\",\n    \"energy_recovery_system\": \"1\",\n    \"quick_charging_function\": \"1\",\n    \"vehicle_charging_cable\": \"1\",\n    \"cruisecontrol_type\": \"cruise-control\",\n    \"headlight_lamp_type\": \"led-front-dim-light\",\n    \"park_distance_control_front\": \"1\",\n    \"park_distance_control_rear\": \"1\",\n    \"park_assistant\": \"1\",\n    \"autonomous_parking_system\": \"1\",\n    \"360_view_camera\": \"1\",\n    \"rear_view_camera\": \"1\",\n    \"door_mirror_electrically_adjustable_in_general\": \"1\",\n    \"door_mirrors_heated\": \"1\",\n    \"door_mirrors_electrically_foldable\": \"1\",\n    \"door_mirror_camera\": \"1\",\n    \"blind_spot_warning\": \"1\",\n    \"active_lane_change_assistant\": \"1\",\n    \"lane_control_assistant\": \"1\",\n    \"distance_control\": \"1\",\n    \"speed_limiter\": \"1\",\n    \"brake_assist\": \"1\",\n    \"curve_trace_assistant\": \"1\",\n    \"traction_control\": \"1\",\n    \"hill_descent_control\": \"1\",\n    \"hill_holder\": \"1\",\n    \"active_speed_sign_recognition\": \"1\",\n    \"traffic_sign_recognition\": \"1\",\n    \"intersection_assist\": \"1\",\n    \"basic_autonomous_driving\": \"1\",\n    \"automated_high_beam_assist\": \"1\",\n    \"adaptive_light\": \"1\",\n    \"dynamic_directional_lights\": \"1\",\n    \"automatic_dimlight_activation\": \"1\",\n    \"headlamp_wash\": \"1\",\n    \"cornering_headlights\": \"1\",\n    \"daytime_running_lights\": \"1\",\n    \"led_daytime_running_lights\": \"1\",\n    \"fog_lamps\": \"1\",\n    \"led_fog_lamps\": \"1\",\n    \"led_rear_lights\": \"1\",\n    \"follow_me_home\": \"1\",\n    \"led_interior_lighting\": \"1\",\n    \"startstop_system\": \"1\",\n    \"tyre_pressure_control\": \"1\",\n    \"electric_parking_brake\": \"1\",\n    \"power_steering\": \"1\",\n    \"limited_slip_differential_in_general\": \"1\",\n    \"selectable_central_differential_characteristics\": \"1\",\n    \"traffic_jam_assist\": \"1\",\n    \"alloy_wheels_type\": \"light-alloy-wheels-16\",\n    \"tyre_type\": \"all-season-tyres\",\n    \"runflat_tyres\": \"1\",\n    \"comfort_suspension\": \"1\",\n    \"electronic_controlled_suspension\": \"1\",\n    \"sport_suspension\": \"1\",\n    \"adjustable_suspension\": \"1\",\n    \"air_suspension\": \"1\",\n    \"hydro_pneumatic_suspension\": \"1\",\n    \"ceramic_composite_brakes\": \"1\",\n    \"antilock_brake_system\": \"1\",\n    \"esp\": \"1\",\n    \"distribution_of_braking_force_electronically\": \"1\",\n    \"power_assisted_brakes\": \"1\",\n    \"city_emergency_brake_assist\": \"1\",\n    \"pedestrian_emergency_brake_assist\": \"1\",\n    \"active_emergency_brake_assist\": \"1\",\n    \"collision_warning_system\": \"1\",\n    \"pre_crash_sound_system\": \"1\",\n    \"rear_pre_crash_system\": \"1\",\n    \"side_pre_crash_system\": \"1\",\n    \"rear_cross_traffic_alert\": \"1\",\n    \"acoustic_vehicle_alerting_system\": \"1\",\n    \"driver_conditioning_monitoring\": \"1\",\n    \"pause_recommendation_warning\": \"1\",\n    \"active_driver_conditioning_monitoring\": \"1\",\n    \"active_lane_control_assistant\": \"1\",\n    \"pre_crash_system\": \"1\",\n    \"automatic_emergency_call\": \"1\",\n    \"driver_airbag\": \"1\",\n    \"passenger_airbag\": \"1\",\n    \"knee_airbag_driver\": \"1\",\n    \"knee_airbag_passenger\": \"1\",\n    \"head_airbags_front\": \"1\",\n    \"central_airbag_driver_and_passenger\": \"1\",\n    \"front_airbags_for_rear_seats\": \"1\",\n    \"side_airbag_driver\": \"1\",\n    \"side_airbag_driver_and_passenger\": \"1\",\n    \"head_airbags_rear\": \"1\",\n    \"side_airbags_rear\": \"1\",\n    \"seat_belt_airbag_rear\": \"1\",\n    \"rear_transversal_curtain_airbag\": \"1\",\n    \"child_seat_fixation\": \"1\",\n    \"roll_over_protection_system\": \"1\"\n  },\n  \"new_used\": \"used\",\n  \"image_collection_id\": \"12345678\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/account/adverts/",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"account",
								"adverts",
								""
							]
						},
						"description": "Use this request to create an advert.\n\nThis request has all the needed and available keys for creating an advert. Nothing more is needed other than what you can find in this payload.\n\nThe following fields are mandatory:\n\n- first_registration_month\n    \n- first_registration_year\n    \n- make\n    \n- model\n    \n- fuel_type\n    \n- power\n    \n- engine_capacity\n    \n- number_doors\n    \n- gearbox_type\n    \n- mileage\n    \n- section\n    \n- color\n    \n- price"
					},
					"response": [
						{
							"name": "Create Advert - Negative Response (Invalid Key-Value)",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": ""
									},
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									},
									{
										"key": "User-Agent",
										"value": "O/x.d3v0.12",
										"disabled": true
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"description\": \"Hello World. This is a description. Minimum char count -> 30\",\n    \"category_id\": 29,\n    \"contact\": {\n        \"person\": \"Dealer name here\"\n    },\n    \"params\": {\n        \"make\": \"mercedes-benz\",\n        \"model\": \"C220\",\n        \"engine_code\": \"classe-c\",\n        \"version\": \"ver-d-be-edition-amg-line-aut-\",\n        \"fuel_type\": \"diesel\",\n        \"section\": \"sedan\",\n        \"engine_capacity\": \"2143\",\n        \"power\": \"163\",\n        \"first_registration_year\": \"2017\",\n        \"first_registration_month\": \"4\",\n        \"mileage\": \"87080\",\n        \"gearbox_type\": \"manual\",\n        \"registration\": \"\",\n        \"origin\": \"imported\",\n        \"capacity\": \"4\",\n        \"number_doors\": \"4\",\n        \"price\": {\n            \"1\": 15500,\n            \"currency\": \"EUR\"\n        },\n        \"fixed_value\": \"1\",\n        \"vendors_warranty_valid_until_date\": \"12\",\n        \"color\": \"white\",\n        \"value_without_isv\": \"0\",\n        \"value_without_iuc\": \"0\",\n        \"tax_deductible\": \"0\",\n        \"accept_returns\": \"0\",\n        \"accept_funding\": \"0\",\n        \"metallic\": \"0\",\n        \"gearbox_shifts\": \"5\",\n        \"vehicle_class\": \"class-1\",\n        \"traction\": \"front-wheel-drive\",\n        \"max_fuel_range\": 500,\n        \"co2_emissions\": 13,\n        \"iuc\": 90,\n        \"particle_filter\": \"0\",\n        \"maker_warranty_valid_until_date\": \"2021-3-5\",\n        \"maker_warranty_valid_until_km\": 300000,\n        \"inspection_valid_until\": \"2021-3-4\",\n        \"number_of_registrations\": \"2\",\n        \"complete_review_book\": \"1\",\n        \"salvage\": \"0\",\n        \"non_smoking\": \"1\",\n        \"second_key\": \"1\",\n        \"urban_consumption\": \"\",\n        \"extra_urban_consumption\": \"\",\n        \"combined_consumption\": \"\",\n        \"classic\": \"0\",\n        \"exterior_features\": [\n            \"roof-racks\",\n            \"finishing-work-in-aluminum\",\n            \"aesthetic-tuning\",\n            \"trailer-hooks\"\n        ],\n        \"headlights\": [\n            \"fog-lights\",\n            \"directional-headlamps\",\n            \"daytime-headlights\",\n            \"height-adjustable\",\n            \"xenon\",\n            \"bi-xenon\",\n            \"luminosity-sensor\",\n            \"led-front\",\n            \"led-back-light\",\n            \"full-led\"\n        ],\n        \"rearview_mirrors\": [\n            \"heated\",\n            \"electrical-regulation\",\n            \"manual-adjustment\",\n            \"anti-chaining\",\n            \"automatic-collection\"\n        ],\n        \"glasses\": [\n            \"front-electric\",\n            \"electric-diant-back\",\n            \"darkened\",\n            \"soundproofing-and-athermic\"\n        ],\n        \"hood\": \"rigid\",\n        \"electrict_hood\": \"1\",\n        \"alloy_wheels\": \"1\",\n        \"measure\": 17,\n        \"upholstery\": \"leather\",\n        \"interior_color\": [\n            \"anthracite\",\n            \"blue\",\n            \"beige\",\n            \"brown\",\n            \"gray\",\n            \"black\",\n            \"red\",\n            \"white\",\n            \"green\",\n            \"other\"\n        ],\n        \"seats\": [\n            \"armrest\",\n            \"heated-front-seats\",\n            \"front-seats-with-memory\",\n            \"electric-front-seats\",\n            \"seats-alcantara-fabric\",\n            \"heated-back-seats\",\n            \"individual-rear-seats\",\n            \"rear-window-curtains\",\n            \"rear-headrests\",\n            \"sport-seats\",\n            \"lumbar-support-seats\"\n        ],\n        \"steering_wheel\": [\n            \"wood-steering-wheel\",\n            \"leather-steering-wheel\",\n            \"steering-wheel-with-radio-controls\",\n            \"multifunction-steering-wheel\",\n            \"heated-multifunction-steering-wheel\",\n            \"height-adjustable-steering-wheel\",\n            \"depth-adjustable-steering-wheel\",\n            \"electrically-adjustable-steering-wheel\"\n        ],\n        \"number_airbags\": 6,\n        \"airbag_type\": [\n            \"side-airbags\",\n            \"driver-airbag\",\n            \"airbag-passenger\"\n        ],\n        \"security_performance_features\": [\n            \"alarm\",\n            \"isofix\",\n            \"immobilizer\",\n            \"abs\",\n            \"assisted-direction\",\n            \"night-driving-assistance\",\n            \"eds-electronic-differential-lock\",\n            \"esp-electronic-stability-control\",\n            \"automatic-parking\",\n            \"automatic-closing-doors\",\n            \"msr-momentary-torque-regulator\",\n            \"tilt-start-assist-system\",\n            \"smart-key\",\n            \"tire-pressure-control\",\n            \"sports-suspension\",\n            \"pneumatic-suspension\",\n            \"sports-pack\",\n            \"start-stop\",\n            \"rain-sensors\",\n            \"parking-sensors\",\n            \"rear-camera\",\n            \"central-locking-with-command\",\n            \"mechanical-tuning\"\n        ],\n        \"comfort_multimedia_features\": [\n            \"usb-port\",\n            \"tv\",\n            \"board-computer\",\n            \"cruise-control\",\n            \"hand-free-kit\",\n            \"luggage-automatic-door\",\n            \"roof-screen\",\n            \"headrest-with-screen\",\n            \"center-console-display\",\n            \"bluetooth\",\n            \"navigation-system-gps\",\n            \"dvd-player\",\n            \"radio-with-cassette\",\n            \"radio-with-cd\",\n            \"radio-with-cd-mp3\"\n        ],\n        \"air_conditioning\": \"automatico\"\n    },\n    \"stand_id\": \"\",\n    \"new_used\": \"used\",\n    \"image_collection_id\": \"12345678\"\n}"
								},
								"url": {
									"raw": "www.otomoto.pl/open/api/account/adverts/",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"account",
										"adverts",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 12:16:55 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "122"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=144210 t=1602764215348842"
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": {\n        \"type\": \"AdvertsPostingException\",\n        \"message\": \"Adding the ad failed.\",\n        \"details\": {\n            \"params.model\": \"Nieprawidłowa wartość\"\n        }\n    }\n}"
						},
						{
							"name": "Create Advert - Positive Response",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": "{{token}}"
									},
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"description\": \"Hello World. This is a description. Minimum char count -> 30\",\n    \"category_id\": 29,\n    \"contact\": {\n        \"person\": \"Dealer name here\"\n    },\n    \"params\": {\n        \"make\": \"mercedes-benz\",\n        \"model\": \"c-220\",\n        \"engine_code\": \"classe-c\",\n        \"version\": \"ver-d-be-edition-amg-line-aut-\",\n        \"fuel_type\": \"diesel\",\n        \"section\": \"sedan\",\n        \"engine_capacity\": \"2143\",\n        \"power\": \"163\",\n        \"first_registration_year\": \"2017\",\n        \"first_registration_month\": \"4\",\n        \"mileage\": \"87080\",\n        \"gearbox_type\": \"manual\",\n        \"registration\": \"\",\n        \"origin\": \"imported\",\n        \"capacity\": \"4\",\n        \"number_doors\": \"4\",\n        \"price\": {\n            \"1\": 15500,\n            \"currency\": \"EUR\"\n        },\n        \"fixed_value\": \"1\",\n        \"vendors_warranty_valid_until_date\": \"36\",\n        \"color\": \"white\",\n        \"value_without_isv\": \"0\",\n        \"value_without_iuc\": \"0\",\n        \"tax_deductible\": \"0\",\n        \"accept_returns\": \"0\",\n        \"accept_funding\": \"0\",\n        \"metallic\": \"0\",\n        \"gearbox_shifts\": \"5\",\n        \"vehicle_class\": \"class-1\",\n        \"traction\": \"front-wheel-drive\",\n        \"max_fuel_range\": 500,\n        \"co2_emissions\": 13,\n        \"iuc\": 90,\n        \"particle_filter\": \"0\",\n        \"maker_warranty_valid_until_date\": \"2021-3-5\",\n        \"maker_warranty_valid_until_km\": 300000,\n        \"inspection_valid_until\": \"2021-3-4\",\n        \"number_of_registrations\": \"2\",\n        \"complete_review_book\": \"1\",\n        \"salvage\": \"0\",\n        \"non_smoking\": \"1\",\n        \"second_key\": \"1\",\n        \"urban_consumption\": \"\",\n        \"extra_urban_consumption\": \"\",\n        \"combined_consumption\": \"\",\n        \"classic\": \"0\",\n        \"exterior_features\": [\n            \"roof-racks\",\n            \"finishing-work-in-aluminum\",\n            \"aesthetic-tuning\",\n            \"trailer-hooks\"\n        ],\n        \"headlights\": [\n            \"fog-lights\",\n            \"directional-headlamps\",\n            \"daytime-headlights\",\n            \"height-adjustable\",\n            \"xenon\",\n            \"bi-xenon\",\n            \"luminosity-sensor\",\n            \"led-front\",\n            \"led-back-light\",\n            \"full-led\"\n        ],\n        \"rearview_mirrors\": [\n            \"heated\",\n            \"electrical-regulation\",\n            \"manual-adjustment\",\n            \"anti-chaining\",\n            \"automatic-collection\"\n        ],\n        \"glasses\": [\n            \"front-electric\",\n            \"electric-diant-back\",\n            \"darkened\",\n            \"soundproofing-and-athermic\"\n        ],\n        \"hood\": \"rigid\",\n        \"electrict_hood\": \"1\",\n        \"alloy_wheels\": \"1\",\n        \"measure\": 17,\n        \"upholstery\": \"leather\",\n        \"interior_color\": [\n            \"anthracite\",\n            \"blue\",\n            \"beige\",\n            \"brown\",\n            \"gray\",\n            \"black\",\n            \"red\",\n            \"white\",\n            \"green\",\n            \"other\"\n        ],\n        \"seats\": [\n            \"armrest\",\n            \"heated-front-seats\",\n            \"front-seats-with-memory\",\n            \"electric-front-seats\",\n            \"seats-alcantara-fabric\",\n            \"heated-back-seats\",\n            \"individual-rear-seats\",\n            \"rear-window-curtains\",\n            \"rear-headrests\",\n            \"sport-seats\",\n            \"lumbar-support-seats\"\n        ],\n        \"steering_wheel\": [\n            \"wood-steering-wheel\",\n            \"leather-steering-wheel\",\n            \"steering-wheel-with-radio-controls\",\n            \"multifunction-steering-wheel\",\n            \"heated-multifunction-steering-wheel\",\n            \"height-adjustable-steering-wheel\",\n            \"depth-adjustable-steering-wheel\",\n            \"electrically-adjustable-steering-wheel\"\n        ],\n        \"number_airbags\": 6,\n        \"airbag_type\": [\n            \"side-airbags\",\n            \"driver-airbag\",\n            \"airbag-passenger\"\n        ],\n        \"security_performance_features\": [\n            \"alarm\",\n            \"isofix\",\n            \"immobilizer\",\n            \"abs\",\n            \"assisted-direction\",\n            \"night-driving-assistance\",\n            \"eds-electronic-differential-lock\",\n            \"esp-electronic-stability-control\",\n            \"automatic-parking\",\n            \"automatic-closing-doors\",\n            \"msr-momentary-torque-regulator\",\n            \"tilt-start-assist-system\",\n            \"smart-key\",\n            \"tire-pressure-control\",\n            \"sports-suspension\",\n            \"pneumatic-suspension\",\n            \"sports-pack\",\n            \"start-stop\",\n            \"rain-sensors\",\n            \"parking-sensors\",\n            \"rear-camera\",\n            \"central-locking-with-command\",\n            \"mechanical-tuning\"\n        ],\n        \"comfort_multimedia_features\": [\n            \"usb-port\",\n            \"tv\",\n            \"board-computer\",\n            \"cruise-control\",\n            \"hand-free-kit\",\n            \"luggage-automatic-door\",\n            \"roof-screen\",\n            \"headrest-with-screen\",\n            \"center-console-display\",\n            \"bluetooth\",\n            \"navigation-system-gps\",\n            \"dvd-player\",\n            \"radio-with-cassette\",\n            \"radio-with-cd\",\n            \"radio-with-cd-mp3\"\n        ],\n        \"air_conditioning\": \"automatico\"\n    },\n    \"stand_id\": \"\",\n    \"new_used\": \"used\",\n    \"image_collection_id\": \"12345678\"\n}"
								},
								"url": {
									"raw": "{{base_url}}/account/adverts/",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"account",
										"adverts",
										""
									],
									"query": [
										{
											"key": "v",
											"value": "2",
											"description": "TO BE USED WITH CATALOG INFORMATION",
											"disabled": true
										}
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Tue, 24 May 2022 13:53:32 GMT"
								},
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "strict-origin-when-cross-origin"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 89695f3a4a3f2f2d6df76a407130856e.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "LIS50-C1"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "GLJT6Y17OOYG-NFsbgZcyxyP5S3A6oerPJL7Z5hOdS8Y5zRD3mVbpQ=="
								}
							],
							"cookie": [],
							"body": "{\n    \"id\": 6135371660,\n    \"user_id\": 11059760,\n    \"status\": \"unpaid\",\n    \"title\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\n    \"url\": \"https://www.otomoto.pl/osobowe/oferta/skoda-octavia-lorem-ipsum-dolor-sit-amet-consectetur-adipiscing-elit-ID6Hdorq.html\",\n    \"created_at\": \"2025-03-09 17:56:15\",\n    \"valid_to\": \"2025-04-08 17:56:14\",\n    \"description\": \"Hello World. This is a description. Minimum char count -> 30, Maximum cat amount -> 60000\",\n    \"category_id\": 29,\n    \"region_id\": 6,\n    \"city_id\": 74557,\n    \"municipality\": \"Świętochłowice\",\n    \"city\": {\n        \"pl\": \"Świętochłowice\",\n        \"en\": \"Świętochłowice\"\n    },\n    \"coordinates\": {\n        \"latitude\": 50.30735,\n        \"longitude\": 18.90414,\n        \"radius\": 0,\n        \"zoom_level\": 12\n    },\n    \"advertiser_type\": \"business\",\n    \"contact\": {\n        \"person\": \"Konto\"\n    },\n    \"params\": {\n        \"has_vin\": \"1\",\n        \"has_registration\": \"1\",\n        \"cepik_authorization\": \"1\",\n        \"towbar\": \"1\",\n        \"make\": \"skoda\",\n        \"model\": \"octavia\",\n        \"video\": \"https://www.youtube.com/watch?v=IyixdWxTH8g\",\n        \"version\": \"ver-1-5-tsi-e--tec-dsg-ambition\",\n        \"generation\": \"gen-iv-2019-octavia\",\n        \"apple_carplay\": \"1\",\n        \"year\": 2023,\n        \"mileage\": 1000,\n        \"engine_capacity\": 1498,\n        \"vin\": \"TESTC000021370000\",\n        \"fuel_type\": \"petrol\",\n        \"engine_power\": 150,\n        \"gearbox\": \"automatic\",\n        \"android_auto\": \"1\",\n        \"transmission\": \"front-wheel\",\n        \"particle_filter\": \"1\",\n        \"bluetooth_interface\": \"1\",\n        \"damaged\": \"0\",\n        \"body_type\": \"combi\",\n        \"co2_emissions\": 20,\n        \"door_count\": \"5\",\n        \"nr_seats\": \"5\",\n        \"color\": \"brown-beige\",\n        \"colour_type\": \"matt\",\n        \"radio\": \"1\",\n        \"rhd\": \"0\",\n        \"price\": {\n            \"0\": \"price\",\n            \"1\": 99999,\n            \"currency\": \"PLN\",\n            \"gross_net\": \"gross\"\n        },\n        \"hands_free_system\": \"1\",\n        \"usb_in\": \"1\",\n        \"maker_warranty_valid_until_date\": \"2026-02-02\",\n        \"maker_warranty_valid_until_km\": 10000,\n        \"vendors_warranty_valid_until_date\": 24,\n        \"country_origin\": \"pl\",\n        \"date_registration\": \"2023-01-02\",\n        \"wireless_device_charging\": \"1\",\n        \"registration\": \"TEST2137\",\n        \"registered\": \"1\",\n        \"original_owner\": \"1\",\n        \"no_accident\": \"1\",\n        \"service_record\": \"1\",\n        \"navigation_system\": \"1\",\n        \"historical_vehicle\": \"1\",\n        \"tuning\": \"1\",\n        \"approval_for_goods\": \"1\",\n        \"soundsystem\": \"1\",\n        \"head_up_display\": \"1\",\n        \"touchscreen_monitor\": \"1\",\n        \"voice_control_for_vehicle_functions\": \"1\",\n        \"internet_access\": \"1\",\n        \"air_conditioning_type\": \"dualzone-automatic-climate-control\",\n        \"convertible_top_type\": \"textile-top\",\n        \"sunblind_type\": \"sunblind-rear-side-door-electric\",\n        \"sunroof\": \"glass-sunroof-fixed\",\n        \"upholstery_type\": \"textile-upholstery\",\n        \"air_condition_rear\": \"1\",\n        \"driver_seat_electrically_adjustable\": \"1\",\n        \"passenger_seat_electrically_adjustable\": \"1\",\n        \"heated_seat_driver\": \"1\",\n        \"heated_seat_passenger\": \"1\",\n        \"lumbar_adjust_driver_electric\": \"1\",\n        \"lumbar_adjust_passenger_electric\": \"1\",\n        \"ventilated_front_seat\": \"1\",\n        \"front_seat_with_massage\": \"1\",\n        \"memory_seat\": \"1\",\n        \"sport_seats_front\": \"1\",\n        \"rear_seat_heating\": \"1\",\n        \"ventilated_rear_seat\": \"1\",\n        \"rear_seat_with_massage\": \"1\",\n        \"armrest_front\": \"1\",\n        \"armrest_rear\": \"1\",\n        \"leather_steering_wheel\": \"1\",\n        \"sports_steering_wheel\": \"1\",\n        \"steering_wheel_with_radio_operation\": \"1\",\n        \"steering_wheel_electrically_adjustable\": \"1\",\n        \"multi_functional_steering_wheel\": \"1\",\n        \"steering_wheel_heated\": \"1\",\n        \"steering_wheel_with_gear_switches\": \"1\",\n        \"leather_gearshifterswitch\": \"1\",\n        \"digital_key\": \"1\",\n        \"keyless_entry\": \"1\",\n        \"keyless_go\": \"1\",\n        \"keyless_engine_start\": \"1\",\n        \"independent_vehicle_heater\": \"1\",\n        \"automatic_heating_control\": \"1\",\n        \"rain_sensor\": \"1\",\n        \"windscreen_heating\": \"1\",\n        \"power_windows_front\": \"1\",\n        \"power_windows_rear\": \"1\",\n        \"tinted_rear_windows\": \"1\",\n        \"windscreenwiper_other\": \"1\",\n        \"top_electrically_operated\": \"1\",\n        \"top_remote_controlled\": \"1\",\n        \"energy_recovery_system\": \"1\",\n        \"quick_charging_function\": \"1\",\n        \"vehicle_charging_cable\": \"1\",\n        \"cruisecontrol_type\": \"cruise-control\",\n        \"headlight_lamp_type\": \"led-front-dim-light\",\n        \"park_distance_control_front\": \"1\",\n        \"park_distance_control_rear\": \"1\",\n        \"park_assistant\": \"1\",\n        \"autonomous_parking_system\": \"1\",\n        \"360_view_camera\": \"1\",\n        \"rear_view_camera\": \"1\",\n        \"door_mirror_electrically_adjustable_in_general\": \"1\",\n        \"door_mirrors_heated\": \"1\",\n        \"door_mirrors_electrically_foldable\": \"1\",\n        \"door_mirror_camera\": \"1\",\n        \"blind_spot_warning\": \"1\",\n        \"active_lane_change_assistant\": \"1\",\n        \"lane_control_assistant\": \"1\",\n        \"distance_control\": \"1\",\n        \"speed_limiter\": \"1\",\n        \"brake_assist\": \"1\",\n        \"curve_trace_assistant\": \"1\",\n        \"traction_control\": \"1\",\n        \"hill_descent_control\": \"1\",\n        \"hill_holder\": \"1\",\n        \"active_speed_sign_recognition\": \"1\",\n        \"traffic_sign_recognition\": \"1\",\n        \"intersection_assist\": \"1\",\n        \"basic_autonomous_driving\": \"1\",\n        \"automated_high_beam_assist\": \"1\",\n        \"adaptive_light\": \"1\",\n        \"dynamic_directional_lights\": \"1\",\n        \"automatic_dimlight_activation\": \"1\",\n        \"headlamp_wash\": \"1\",\n        \"cornering_headlights\": \"1\",\n        \"daytime_running_lights\": \"1\",\n        \"led_daytime_running_lights\": \"1\",\n        \"fog_lamps\": \"1\",\n        \"led_fog_lamps\": \"1\",\n        \"led_rear_lights\": \"1\",\n        \"follow_me_home\": \"1\",\n        \"led_interior_lighting\": \"1\",\n        \"startstop_system\": \"1\",\n        \"tyre_pressure_control\": \"1\",\n        \"electric_parking_brake\": \"1\",\n        \"power_steering\": \"1\",\n        \"limited_slip_differential_in_general\": \"1\",\n        \"selectable_central_differential_characteristics\": \"1\",\n        \"traffic_jam_assist\": \"1\",\n        \"alloy_wheels_type\": \"light-alloy-wheels-16\",\n        \"tyre_type\": \"all-season-tyres\",\n        \"runflat_tyres\": \"1\",\n        \"comfort_suspension\": \"1\",\n        \"electronic_controlled_suspension\": \"1\",\n        \"sport_suspension\": \"1\",\n        \"adjustable_suspension\": \"1\",\n        \"air_suspension\": \"1\",\n        \"hydro_pneumatic_suspension\": \"1\",\n        \"ceramic_composite_brakes\": \"1\",\n        \"antilock_brake_system\": \"1\",\n        \"esp\": \"1\",\n        \"distribution_of_braking_force_electronically\": \"1\",\n        \"power_assisted_brakes\": \"1\",\n        \"city_emergency_brake_assist\": \"1\",\n        \"pedestrian_emergency_brake_assist\": \"1\",\n        \"active_emergency_brake_assist\": \"1\",\n        \"collision_warning_system\": \"1\",\n        \"pre_crash_sound_system\": \"1\",\n        \"rear_pre_crash_system\": \"1\",\n        \"side_pre_crash_system\": \"1\",\n        \"rear_cross_traffic_alert\": \"1\",\n        \"acoustic_vehicle_alerting_system\": \"1\",\n        \"driver_conditioning_monitoring\": \"1\",\n        \"pause_recommendation_warning\": \"1\",\n        \"active_driver_conditioning_monitoring\": \"1\",\n        \"active_lane_control_assistant\": \"1\",\n        \"pre_crash_system\": \"1\",\n        \"automatic_emergency_call\": \"1\",\n        \"driver_airbag\": \"1\",\n        \"passenger_airbag\": \"1\",\n        \"knee_airbag_driver\": \"1\",\n        \"knee_airbag_passenger\": \"1\",\n        \"head_airbags_front\": \"1\",\n        \"central_airbag_driver_and_passenger\": \"1\",\n        \"front_airbags_for_rear_seats\": \"1\",\n        \"side_airbag_driver\": \"1\",\n        \"side_airbag_driver_and_passenger\": \"1\",\n        \"head_airbags_rear\": \"1\",\n        \"side_airbags_rear\": \"1\",\n        \"seat_belt_airbag_rear\": \"1\",\n        \"rear_transversal_curtain_airbag\": \"1\",\n        \"child_seat_fixation\": \"1\",\n        \"roll_over_protection_system\": \"1\"\n    },\n    \"new_used\": \"used\",\n    \"brand_program_id\": \"54\",\n    \"visible_in_profile\": \"1\",\n    \"last_update_date\": \"2025-03-09 17:56:15\"\n}"
						}
					]
				}
			],
			"description": "How to create an advert in Otomoto.",
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "ACTIVATING ADVERT",
			"item": [
				{
					"name": "ACTIVATE ADVERT",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{base_url}}/account/adverts/:advert_id/activate",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"account",
								"adverts",
								":advert_id",
								"activate"
							],
							"variable": [
								{
									"key": "advert_id",
									"value": ""
								}
							]
						},
						"description": "Use this request to activate an advert.\n\nAfter creating an advert via API, you will be provided with an \"ID\". This is the advert's id and it will be used to identify the advert from then on.\n\nTo activate an advert, simply run the following request with the advert's ID."
					},
					"response": [
						{
							"name": "Activate advert - Negative Response (Already Active)",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": ""
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "www.otomoto.pl/open/api/account/adverts/:advert_id/activate",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"account",
										"adverts",
										":advert_id",
										"activate"
									],
									"variable": [
										{
											"key": "advert_id",
											"value": ""
										}
									]
								}
							},
							"status": "Forbidden",
							"code": 403,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "114"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 13:28:59 GMT"
								},
								{
									"key": "Server",
									"value": "OLXcdn"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Set-Cookie",
									"value": "newrelic_cdn_name=CF; expires=Thu, 15-Oct-2020 13:38:59 GMT; Max-Age=600; path=/"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-T",
									"value": "D=71283 t=1602768538983129"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-Cache",
									"value": "Error from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 0bb58964819755c192fe9c24c342bd1a.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "PRG50-C1"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "_mN5IeLaqi6BN1ZO69qquFdE-cVZQJUJtd9HpsjfKJP00lwDu8p1Xw=="
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": {\n        \"type\": \"ForbiddenException\"\n    }\n}"
						},
						{
							"name": "Activate advert - Positive Response",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": "{{token}}"
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{base_url}}/account/adverts/:advert_id/activate",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"account",
										"adverts",
										":advert_id",
										"activate"
									],
									"variable": [
										{
											"key": "advert_id",
											"value": ""
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Content-Length",
									"value": "53"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 13:27:40 GMT"
								},
								{
									"key": "Server",
									"value": "OLXcdn"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Set-Cookie",
									"value": "newrelic_cdn_name=CF; expires=Thu, 15-Oct-2020 13:37:39 GMT; Max-Age=600; path=/"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-T",
									"value": "D=441587 t=1602768459592701"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 0bb58964819755c192fe9c24c342bd1a.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "PRG50-C1"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "ecLRzm_hdkipDYvQ7RSQy2ZbZc7bQUicY5ip9-g9o2UKvVljOdwOdw=="
								}
							],
							"cookie": [],
							"body": "\"The ad has been add to queue, waiting to activation\""
						}
					]
				}
			],
			"description": "How to activate an advert in Otomoto.",
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "EDITING ADVERT",
			"item": [
				{
					"name": "UPDATE IMAGE COLLECTION",
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"1\": \"http://imgsv.imaging.nikon.com/lineup/lens/zoom/normalzoom/af-s_dx_18-140mmf_35-56g_ed_vr/img/sample/sample1_l.jpg\",\n\t\"2\": \"https://i.ibb.co/rcTrxLc/2BARCH9.jpg\",\n\t\"3\": \"https://i.ibb.co/tB64yRy/2BARCHE.jpg\",\n\t\"4\": \"https://i.ibb.co/my3tVmk/2BARCHN.jpg\"\n}"
						},
						"url": {
							"raw": "{{base_url}}/imageCollections/:imageCollection_id",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"imageCollections",
								":imageCollection_id"
							],
							"variable": [
								{
									"key": "imageCollection_id",
									"value": ""
								}
							]
						},
						"description": "Use this request to update an Image collection.\n\nIf you want to change the images of an advert, you will have to use this request with the image collection ID.\n\nThis request requires you to send all the photos again, by the desired order, and it will update everything acordingly to what you've sent us.\n\nNOTE: You can't just send the photo you want to add, you will need to send every photo you want to see in the advert by order, even if the photo is on our side.\n\nWhat we do is, if we find an image that already exists in that image collection, we don't upload it, we recicle the photo on our side, on the new position (if applicable). Any new photo is uploaded."
					},
					"response": [
						{
							"name": "Update Image Collection - Negative Response",
							"originalRequest": {
								"method": "PUT",
								"header": [
									{
										"key": "Authorization",
										"value": ""
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "User-Agent",
										"value": "O/x.d3v0.12"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"1\": \"http://imgsv.imaging.nikon.com/lineup/lens/zoom/normalzoom/af-s_dx_18-140mmf_35-56g_ed_vr/img/sample/sample1_l.jpg\",\n\t\"2\": \"https://i.ibb.co/rcTrxLc/2BARCH9.jpg\",\n\t\"3\": \"https://i.ibb.co/tB64yRy/2BARCHE.jpg\",\n\t\"4\": \"https://i.ibb.co/my3tVmk/2BARCHN.jpg\"\n}"
								},
								"url": {
									"raw": "www.otomoto.pl/open/api/imageCollections/42417",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"imageCollections",
										"42417"
									]
								}
							},
							"status": "Not Found",
							"code": 404,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 12:09:49 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "78"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=65257 t=1602763789548987"
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": {\n        \"type\": \"NotFoundException\",\n        \"message\": \"Image collection not exists\"\n    }\n}"
						},
						{
							"name": "Update Image Collection - Positive Response",
							"originalRequest": {
								"method": "PUT",
								"header": [
									{
										"key": "Authorization",
										"value": "{{token}}"
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "User-Agent",
										"value": "O/x.d3v0.12"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"1\": \"http://imgsv.imaging.nikon.com/lineup/lens/zoom/normalzoom/af-s_dx_18-140mmf_35-56g_ed_vr/img/sample/sample1_l.jpg\",\n\t\"2\": \"https://i.ibb.co/rcTrxLc/2BARCH9.jpg\",\n\t\"3\": \"https://i.ibb.co/tB64yRy/2BARCHE.jpg\",\n\t\"4\": \"https://i.ibb.co/my3tVmk/2BARCHN.jpg\"\n}"
								},
								"url": {
									"raw": "{{base_url}}/imageCollections/424187",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"imageCollections",
										"424187"
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 12:09:29 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Content-Length",
									"value": "3318"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Location",
									"value": "https://sbcarspt.playground.lisbontechhub.com/api/open/imageCollections/424187"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=2717623 t=1602763766790920"
								}
							],
							"cookie": [],
							"body": "{\n    \"id\": \"424187\",\n    \"images\": {\n        \"1\": {\n            \"0\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6ImkxNGpxNHd2enU0dzMtU1REVlRMUFRTQiJ9.Fy3PZ_sy8pHZ885OWI1IxaQoEIv9M_5uHEA8aGDOI8o/image;s=732x488\",\n            \"1\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6ImkxNGpxNHd2enU0dzMtU1REVlRMUFRTQiJ9.Fy3PZ_sy8pHZ885OWI1IxaQoEIv9M_5uHEA8aGDOI8o/image;s=148x110\",\n            \"2\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6ImkxNGpxNHd2enU0dzMtU1REVlRMUFRTQiJ9.Fy3PZ_sy8pHZ885OWI1IxaQoEIv9M_5uHEA8aGDOI8o/image;s=320x240\",\n            \"3\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6ImkxNGpxNHd2enU0dzMtU1REVlRMUFRTQiJ9.Fy3PZ_sy8pHZ885OWI1IxaQoEIv9M_5uHEA8aGDOI8o/image;s=1080x720\",\n            \"4\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6ImkxNGpxNHd2enU0dzMtU1REVlRMUFRTQiJ9.Fy3PZ_sy8pHZ885OWI1IxaQoEIv9M_5uHEA8aGDOI8o/image;s=1280x800\"\n        },\n        \"2\": {\n            \"0\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjBkbDdjMzBvNHgxdzMtU1REVlRMUFRTQiJ9.tZC5JflQwGp_6shF4XjTkQb0uCassl5JgdeZG87Rb7Y/image;s=732x488\",\n            \"1\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjBkbDdjMzBvNHgxdzMtU1REVlRMUFRTQiJ9.tZC5JflQwGp_6shF4XjTkQb0uCassl5JgdeZG87Rb7Y/image;s=148x110\",\n            \"2\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjBkbDdjMzBvNHgxdzMtU1REVlRMUFRTQiJ9.tZC5JflQwGp_6shF4XjTkQb0uCassl5JgdeZG87Rb7Y/image;s=320x240\",\n            \"3\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjBkbDdjMzBvNHgxdzMtU1REVlRMUFRTQiJ9.tZC5JflQwGp_6shF4XjTkQb0uCassl5JgdeZG87Rb7Y/image;s=1080x720\",\n            \"4\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjBkbDdjMzBvNHgxdzMtU1REVlRMUFRTQiJ9.tZC5JflQwGp_6shF4XjTkQb0uCassl5JgdeZG87Rb7Y/image;s=1280x800\"\n        },\n        \"3\": {\n            \"0\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjA5Z2c1d3EzeHE0aDItU1REVlRMUFRTQiJ9.jJjoYpdKpl8zaCcP-w1TSBX8Uh-whJv1M38WmMeSVoo/image;s=732x488\",\n            \"1\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjA5Z2c1d3EzeHE0aDItU1REVlRMUFRTQiJ9.jJjoYpdKpl8zaCcP-w1TSBX8Uh-whJv1M38WmMeSVoo/image;s=148x110\",\n            \"2\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjA5Z2c1d3EzeHE0aDItU1REVlRMUFRTQiJ9.jJjoYpdKpl8zaCcP-w1TSBX8Uh-whJv1M38WmMeSVoo/image;s=320x240\",\n            \"3\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjA5Z2c1d3EzeHE0aDItU1REVlRMUFRTQiJ9.jJjoYpdKpl8zaCcP-w1TSBX8Uh-whJv1M38WmMeSVoo/image;s=1080x720\",\n            \"4\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjA5Z2c1d3EzeHE0aDItU1REVlRMUFRTQiJ9.jJjoYpdKpl8zaCcP-w1TSBX8Uh-whJv1M38WmMeSVoo/image;s=1280x800\"\n        },\n        \"4\": {\n            \"0\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdhM2JyMG9xMXkycjItU1REVlRMUFRTQiJ9.5-818vg3mMZqANXCLVqHJvSjHwzE1WMZTTbYRpnpxuc/image;s=732x488\",\n            \"1\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdhM2JyMG9xMXkycjItU1REVlRMUFRTQiJ9.5-818vg3mMZqANXCLVqHJvSjHwzE1WMZTTbYRpnpxuc/image;s=148x110\",\n            \"2\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdhM2JyMG9xMXkycjItU1REVlRMUFRTQiJ9.5-818vg3mMZqANXCLVqHJvSjHwzE1WMZTTbYRpnpxuc/image;s=320x240\",\n            \"3\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdhM2JyMG9xMXkycjItU1REVlRMUFRTQiJ9.5-818vg3mMZqANXCLVqHJvSjHwzE1WMZTTbYRpnpxuc/image;s=1080x720\",\n            \"4\": \"https://apollo-ireland.akamaized.net/v1/files/eyJmbiI6IjdhM2JyMG9xMXkycjItU1REVlRMUFRTQiJ9.5-818vg3mMZqANXCLVqHJvSjHwzE1WMZTTbYRpnpxuc/image;s=1280x800\"\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "UPDATE ADVERT",
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"title\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\n  \"description\": \"Hello World. This is a description. Minimum char count -> 30, Maximum cat amount -> 60000\",\n  \"category_id\": 29,\n  \"params\": {\n    \"has_vin\": \"1\",\n    \"is_imported_car\": 1,\n    \"has_registration\": \"1\",\n    \"cepik_authorization\": \"1\",\n    \"towbar\": \"1\",\n    \"make\": \"skoda\",\n    \"model\": \"octavia\",\n    \"video\": \"https://www.youtube.com/watch?v=IyixdWxTH8g\",\n    \"version\": \"ver-1-5-tsi-e--tec-dsg-ambition\",\n    \"generation\": \"gen-iv-2019-octavia\",\n    \"apple_carplay\": \"1\",\n    \"year\": 2023,\n    \"mileage\": 1000,\n    \"engine_capacity\": 1498,\n    \"vin\": \"TESTC000021370000\",\n    \"fuel_type\": \"petrol\",\n    \"engine_power\": 150,\n    \"gearbox\": \"automatic\",\n    \"android_auto\": \"1\",\n    \"transmission\": \"front-wheel\",\n    \"particle_filter\": \"1\",\n    \"bluetooth_interface\": \"1\",\n    \"damaged\": \"0\",\n    \"body_type\": \"combi\",\n    \"co2_emissions\": 20,\n    \"door_count\": \"5\",\n    \"nr_seats\": \"5\",\n    \"color\": \"brown-beige\",\n    \"colour_type\": \"matt\",\n    \"radio\": \"1\",\n    \"rhd\": \"0\",\n    \"price\": {\n      \"0\": \"price\",\n      \"1\": 99999,\n      \"currency\": \"PLN\",\n      \"gross_net\": \"gross\"\n    },\n    \"hands_free_system\": \"1\",\n    \"usb_in\": \"1\",\n    \"maker_warranty_valid_until_date\": \"2026-02-02\",\n    \"maker_warranty_valid_until_km\": 10000,\n    \"vendors_warranty_valid_until_date\": 24,\n    \"country_origin\": \"pl\",\n    \"date_registration\": \"2023-01-02\",\n    \"wireless_device_charging\": \"1\",\n    \"registration\": \"TEST2137\",\n    \"registered\": \"1\",\n    \"original_owner\": \"1\",\n    \"no_accident\": \"1\",\n    \"service_record\": \"1\",\n    \"navigation_system\": \"1\",\n    \"historical_vehicle\": \"1\",\n    \"tuning\": \"1\",\n    \"approval_for_goods\": \"1\",\n    \"soundsystem\": \"1\",\n    \"head_up_display\": \"1\",\n    \"touchscreen_monitor\": \"1\",\n    \"voice_control_for_vehicle_functions\": \"1\",\n    \"internet_access\": \"1\",\n    \"air_conditioning_type\": \"dualzone-automatic-climate-control\",\n    \"convertible_top_type\": \"textile-top\",\n    \"sunblind_type\": \"sunblind-rear-side-door-electric\",\n    \"sunroof\": \"glass-sunroof-fixed\",\n    \"upholstery_type\": \"textile-upholstery\",\n    \"air_condition_rear\": \"1\",\n    \"driver_seat_electrically_adjustable\": \"1\",\n    \"passenger_seat_electrically_adjustable\": \"1\",\n    \"heated_seat_driver\": \"1\",\n    \"heated_seat_passenger\": \"1\",\n    \"lumbar_adjust_driver_electric\": \"1\",\n    \"lumbar_adjust_passenger_electric\": \"1\",\n    \"ventilated_front_seat\": \"1\",\n    \"front_seat_with_massage\": \"1\",\n    \"memory_seat\": \"1\",\n    \"sport_seats_front\": \"1\",\n    \"rear_seat_heating\": \"1\",\n    \"ventilated_rear_seat\": \"1\",\n    \"rear_seat_with_massage\": \"1\",\n    \"armrest_front\": \"1\",\n    \"armrest_rear\": \"1\",\n    \"leather_steering_wheel\": \"1\",\n    \"sports_steering_wheel\": \"1\",\n    \"steering_wheel_with_radio_operation\": \"1\",\n    \"steering_wheel_electrically_adjustable\": \"1\",\n    \"multi_functional_steering_wheel\": \"1\",\n    \"steering_wheel_heated\": \"1\",\n    \"steering_wheel_with_gear_switches\": \"1\",\n    \"leather_gearshifterswitch\": \"1\",\n    \"digital_key\": \"1\",\n    \"keyless_entry\": \"1\",\n    \"keyless_go\": \"1\",\n    \"keyless_engine_start\": \"1\",\n    \"independent_vehicle_heater\": \"1\",\n    \"automatic_heating_control\": \"1\",\n    \"rain_sensor\": \"1\",\n    \"windscreen_heating\": \"1\",\n    \"power_windows_front\": \"1\",\n    \"power_windows_rear\": \"1\",\n    \"tinted_rear_windows\": \"1\",\n    \"windscreenwiper_other\": \"1\",\n    \"top_electrically_operated\": \"1\",\n    \"top_remote_controlled\": \"1\",\n    \"energy_recovery_system\": \"1\",\n    \"quick_charging_function\": \"1\",\n    \"vehicle_charging_cable\": \"1\",\n    \"cruisecontrol_type\": \"cruise-control\",\n    \"headlight_lamp_type\": \"led-front-dim-light\",\n    \"park_distance_control_front\": \"1\",\n    \"park_distance_control_rear\": \"1\",\n    \"park_assistant\": \"1\",\n    \"autonomous_parking_system\": \"1\",\n    \"360_view_camera\": \"1\",\n    \"rear_view_camera\": \"1\",\n    \"door_mirror_electrically_adjustable_in_general\": \"1\",\n    \"door_mirrors_heated\": \"1\",\n    \"door_mirrors_electrically_foldable\": \"1\",\n    \"door_mirror_camera\": \"1\",\n    \"blind_spot_warning\": \"1\",\n    \"active_lane_change_assistant\": \"1\",\n    \"lane_control_assistant\": \"1\",\n    \"distance_control\": \"1\",\n    \"speed_limiter\": \"1\",\n    \"brake_assist\": \"1\",\n    \"curve_trace_assistant\": \"1\",\n    \"traction_control\": \"1\",\n    \"hill_descent_control\": \"1\",\n    \"hill_holder\": \"1\",\n    \"active_speed_sign_recognition\": \"1\",\n    \"traffic_sign_recognition\": \"1\",\n    \"intersection_assist\": \"1\",\n    \"basic_autonomous_driving\": \"1\",\n    \"automated_high_beam_assist\": \"1\",\n    \"adaptive_light\": \"1\",\n    \"dynamic_directional_lights\": \"1\",\n    \"automatic_dimlight_activation\": \"1\",\n    \"headlamp_wash\": \"1\",\n    \"cornering_headlights\": \"1\",\n    \"daytime_running_lights\": \"1\",\n    \"led_daytime_running_lights\": \"1\",\n    \"fog_lamps\": \"1\",\n    \"led_fog_lamps\": \"1\",\n    \"led_rear_lights\": \"1\",\n    \"follow_me_home\": \"1\",\n    \"led_interior_lighting\": \"1\",\n    \"startstop_system\": \"1\",\n    \"tyre_pressure_control\": \"1\",\n    \"electric_parking_brake\": \"1\",\n    \"power_steering\": \"1\",\n    \"limited_slip_differential_in_general\": \"1\",\n    \"selectable_central_differential_characteristics\": \"1\",\n    \"traffic_jam_assist\": \"1\",\n    \"alloy_wheels_type\": \"light-alloy-wheels-16\",\n    \"tyre_type\": \"all-season-tyres\",\n    \"runflat_tyres\": \"1\",\n    \"comfort_suspension\": \"1\",\n    \"electronic_controlled_suspension\": \"1\",\n    \"sport_suspension\": \"1\",\n    \"adjustable_suspension\": \"1\",\n    \"air_suspension\": \"1\",\n    \"hydro_pneumatic_suspension\": \"1\",\n    \"ceramic_composite_brakes\": \"1\",\n    \"antilock_brake_system\": \"1\",\n    \"esp\": \"1\",\n    \"distribution_of_braking_force_electronically\": \"1\",\n    \"power_assisted_brakes\": \"1\",\n    \"city_emergency_brake_assist\": \"1\",\n    \"pedestrian_emergency_brake_assist\": \"1\",\n    \"active_emergency_brake_assist\": \"1\",\n    \"collision_warning_system\": \"1\",\n    \"pre_crash_sound_system\": \"1\",\n    \"rear_pre_crash_system\": \"1\",\n    \"side_pre_crash_system\": \"1\",\n    \"rear_cross_traffic_alert\": \"1\",\n    \"acoustic_vehicle_alerting_system\": \"1\",\n    \"driver_conditioning_monitoring\": \"1\",\n    \"pause_recommendation_warning\": \"1\",\n    \"active_driver_conditioning_monitoring\": \"1\",\n    \"active_lane_control_assistant\": \"1\",\n    \"pre_crash_system\": \"1\",\n    \"automatic_emergency_call\": \"1\",\n    \"driver_airbag\": \"1\",\n    \"passenger_airbag\": \"1\",\n    \"knee_airbag_driver\": \"1\",\n    \"knee_airbag_passenger\": \"1\",\n    \"head_airbags_front\": \"1\",\n    \"central_airbag_driver_and_passenger\": \"1\",\n    \"front_airbags_for_rear_seats\": \"1\",\n    \"side_airbag_driver\": \"1\",\n    \"side_airbag_driver_and_passenger\": \"1\",\n    \"head_airbags_rear\": \"1\",\n    \"side_airbags_rear\": \"1\",\n    \"seat_belt_airbag_rear\": \"1\",\n    \"rear_transversal_curtain_airbag\": \"1\",\n    \"child_seat_fixation\": \"1\",\n    \"roll_over_protection_system\": \"0\"\n  },\n  \"category_id\": 29,\n  \"brand_program_id\": \"54\",\n  \"new_used\": \"used\",\n  \"image_collection_id\": \"12345678\"\n}"
						},
						"url": {
							"raw": "{{base_url}}/account/adverts/:advert_id",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"account",
								"adverts",
								":advert_id"
							],
							"variable": [
								{
									"key": "advert_id",
									"value": ""
								}
							]
						},
						"description": "Use this request to update an advert.\n\nYou can update an adverts info by using this request. You will have to send the complete payload again, including the desired changes.\n\nNOTE: make, model and year can not be changed after 24 hours. If you receive a response that contains \"Can't change advert after grace period\", it means you are trying to change one or more of the above keys after the 24 hour grace period."
					},
					"response": [
						{
							"name": "Update advert - Positive Response",
							"originalRequest": {
								"method": "PUT",
								"header": [
									{
										"key": "Authorization",
										"value": ""
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "User-Agent",
										"value": "O/x.d3v0.12",
										"disabled": true
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"title\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\n  \"description\": \"Hello World. This is a description. Minimum char count -> 30, Maximum cat amount -> 60000\",\n  \"category_id\": 29,\n  \"params\": {\n    \"has_vin\": \"1\",\n    \"is_imported_car\": 1,\n    \"has_registration\": \"1\",\n    \"cepik_authorization\": \"1\",\n    \"towbar\": \"1\",\n    \"make\": \"skoda\",\n    \"model\": \"octavia\",\n    \"video\": \"https://www.youtube.com/watch?v=IyixdWxTH8g\",\n    \"version\": \"ver-1-5-tsi-e--tec-dsg-ambition\",\n    \"generation\": \"gen-iv-2019-octavia\",\n    \"apple_carplay\": \"1\",\n    \"year\": 2023,\n    \"mileage\": 1000,\n    \"engine_capacity\": 1498,\n    \"vin\": \"TESTC000021370000\",\n    \"fuel_type\": \"petrol\",\n    \"engine_power\": 150,\n    \"gearbox\": \"automatic\",\n    \"android_auto\": \"1\",\n    \"transmission\": \"front-wheel\",\n    \"particle_filter\": \"1\",\n    \"bluetooth_interface\": \"1\",\n    \"damaged\": \"0\",\n    \"body_type\": \"combi\",\n    \"co2_emissions\": 20,\n    \"door_count\": \"5\",\n    \"nr_seats\": \"5\",\n    \"color\": \"brown-beige\",\n    \"colour_type\": \"matt\",\n    \"radio\": \"1\",\n    \"rhd\": \"0\",\n    \"price\": {\n      \"0\": \"price\",\n      \"1\": 99999,\n      \"currency\": \"PLN\",\n      \"gross_net\": \"gross\"\n    },\n    \"hands_free_system\": \"1\",\n    \"usb_in\": \"1\",\n    \"maker_warranty_valid_until_date\": \"2026-02-02\",\n    \"maker_warranty_valid_until_km\": 10000,\n    \"vendors_warranty_valid_until_date\": 24,\n    \"country_origin\": \"pl\",\n    \"date_registration\": \"2023-01-02\",\n    \"wireless_device_charging\": \"1\",\n    \"registration\": \"TEST2137\",\n    \"registered\": \"1\",\n    \"original_owner\": \"1\",\n    \"no_accident\": \"1\",\n    \"service_record\": \"1\",\n    \"navigation_system\": \"1\",\n    \"historical_vehicle\": \"1\",\n    \"tuning\": \"1\",\n    \"approval_for_goods\": \"1\",\n    \"soundsystem\": \"1\",\n    \"head_up_display\": \"1\",\n    \"touchscreen_monitor\": \"1\",\n    \"voice_control_for_vehicle_functions\": \"1\",\n    \"internet_access\": \"1\",\n    \"air_conditioning_type\": \"dualzone-automatic-climate-control\",\n    \"convertible_top_type\": \"textile-top\",\n    \"sunblind_type\": \"sunblind-rear-side-door-electric\",\n    \"sunroof\": \"glass-sunroof-fixed\",\n    \"upholstery_type\": \"textile-upholstery\",\n    \"air_condition_rear\": \"1\",\n    \"driver_seat_electrically_adjustable\": \"1\",\n    \"passenger_seat_electrically_adjustable\": \"1\",\n    \"heated_seat_driver\": \"1\",\n    \"heated_seat_passenger\": \"1\",\n    \"lumbar_adjust_driver_electric\": \"1\",\n    \"lumbar_adjust_passenger_electric\": \"1\",\n    \"ventilated_front_seat\": \"1\",\n    \"front_seat_with_massage\": \"1\",\n    \"memory_seat\": \"1\",\n    \"sport_seats_front\": \"1\",\n    \"rear_seat_heating\": \"1\",\n    \"ventilated_rear_seat\": \"1\",\n    \"rear_seat_with_massage\": \"1\",\n    \"armrest_front\": \"1\",\n    \"armrest_rear\": \"1\",\n    \"leather_steering_wheel\": \"1\",\n    \"sports_steering_wheel\": \"1\",\n    \"steering_wheel_with_radio_operation\": \"1\",\n    \"steering_wheel_electrically_adjustable\": \"1\",\n    \"multi_functional_steering_wheel\": \"1\",\n    \"steering_wheel_heated\": \"1\",\n    \"steering_wheel_with_gear_switches\": \"1\",\n    \"leather_gearshifterswitch\": \"1\",\n    \"digital_key\": \"1\",\n    \"keyless_entry\": \"1\",\n    \"keyless_go\": \"1\",\n    \"keyless_engine_start\": \"1\",\n    \"independent_vehicle_heater\": \"1\",\n    \"automatic_heating_control\": \"1\",\n    \"rain_sensor\": \"1\",\n    \"windscreen_heating\": \"1\",\n    \"power_windows_front\": \"1\",\n    \"power_windows_rear\": \"1\",\n    \"tinted_rear_windows\": \"1\",\n    \"windscreenwiper_other\": \"1\",\n    \"top_electrically_operated\": \"1\",\n    \"top_remote_controlled\": \"1\",\n    \"energy_recovery_system\": \"1\",\n    \"quick_charging_function\": \"1\",\n    \"vehicle_charging_cable\": \"1\",\n    \"cruisecontrol_type\": \"cruise-control\",\n    \"headlight_lamp_type\": \"led-front-dim-light\",\n    \"park_distance_control_front\": \"1\",\n    \"park_distance_control_rear\": \"1\",\n    \"park_assistant\": \"1\",\n    \"autonomous_parking_system\": \"1\",\n    \"360_view_camera\": \"1\",\n    \"rear_view_camera\": \"1\",\n    \"door_mirror_electrically_adjustable_in_general\": \"1\",\n    \"door_mirrors_heated\": \"1\",\n    \"door_mirrors_electrically_foldable\": \"1\",\n    \"door_mirror_camera\": \"1\",\n    \"blind_spot_warning\": \"1\",\n    \"active_lane_change_assistant\": \"1\",\n    \"lane_control_assistant\": \"1\",\n    \"distance_control\": \"1\",\n    \"speed_limiter\": \"1\",\n    \"brake_assist\": \"1\",\n    \"curve_trace_assistant\": \"1\",\n    \"traction_control\": \"1\",\n    \"hill_descent_control\": \"1\",\n    \"hill_holder\": \"1\",\n    \"active_speed_sign_recognition\": \"1\",\n    \"traffic_sign_recognition\": \"1\",\n    \"intersection_assist\": \"1\",\n    \"basic_autonomous_driving\": \"1\",\n    \"automated_high_beam_assist\": \"1\",\n    \"adaptive_light\": \"1\",\n    \"dynamic_directional_lights\": \"1\",\n    \"automatic_dimlight_activation\": \"1\",\n    \"headlamp_wash\": \"1\",\n    \"cornering_headlights\": \"1\",\n    \"daytime_running_lights\": \"1\",\n    \"led_daytime_running_lights\": \"1\",\n    \"fog_lamps\": \"1\",\n    \"led_fog_lamps\": \"1\",\n    \"led_rear_lights\": \"1\",\n    \"follow_me_home\": \"1\",\n    \"led_interior_lighting\": \"1\",\n    \"startstop_system\": \"1\",\n    \"tyre_pressure_control\": \"1\",\n    \"electric_parking_brake\": \"1\",\n    \"power_steering\": \"1\",\n    \"limited_slip_differential_in_general\": \"1\",\n    \"selectable_central_differential_characteristics\": \"1\",\n    \"traffic_jam_assist\": \"1\",\n    \"alloy_wheels_type\": \"light-alloy-wheels-16\",\n    \"tyre_type\": \"all-season-tyres\",\n    \"runflat_tyres\": \"1\",\n    \"comfort_suspension\": \"1\",\n    \"electronic_controlled_suspension\": \"1\",\n    \"sport_suspension\": \"1\",\n    \"adjustable_suspension\": \"1\",\n    \"air_suspension\": \"1\",\n    \"hydro_pneumatic_suspension\": \"1\",\n    \"ceramic_composite_brakes\": \"1\",\n    \"antilock_brake_system\": \"1\",\n    \"esp\": \"1\",\n    \"distribution_of_braking_force_electronically\": \"1\",\n    \"power_assisted_brakes\": \"1\",\n    \"city_emergency_brake_assist\": \"1\",\n    \"pedestrian_emergency_brake_assist\": \"1\",\n    \"active_emergency_brake_assist\": \"1\",\n    \"collision_warning_system\": \"1\",\n    \"pre_crash_sound_system\": \"1\",\n    \"rear_pre_crash_system\": \"1\",\n    \"side_pre_crash_system\": \"1\",\n    \"rear_cross_traffic_alert\": \"1\",\n    \"acoustic_vehicle_alerting_system\": \"1\",\n    \"driver_conditioning_monitoring\": \"1\",\n    \"pause_recommendation_warning\": \"1\",\n    \"active_driver_conditioning_monitoring\": \"1\",\n    \"active_lane_control_assistant\": \"1\",\n    \"pre_crash_system\": \"1\",\n    \"automatic_emergency_call\": \"1\",\n    \"driver_airbag\": \"1\",\n    \"passenger_airbag\": \"1\",\n    \"knee_airbag_driver\": \"1\",\n    \"knee_airbag_passenger\": \"1\",\n    \"head_airbags_front\": \"1\",\n    \"central_airbag_driver_and_passenger\": \"1\",\n    \"front_airbags_for_rear_seats\": \"1\",\n    \"side_airbag_driver\": \"1\",\n    \"side_airbag_driver_and_passenger\": \"1\",\n    \"head_airbags_rear\": \"1\",\n    \"side_airbags_rear\": \"1\",\n    \"seat_belt_airbag_rear\": \"1\",\n    \"rear_transversal_curtain_airbag\": \"1\",\n    \"child_seat_fixation\": \"1\",\n    \"roll_over_protection_system\": \"1\"\n  },\n  \"category_id\": 29,\n  \"brand_program_id\": \"54\",\n  \"new_used\": \"used\",\n  \"image_collection_id\": \"12345678\"\n}"
								},
								"url": {
									"raw": "www.otomoto.pl/open/api/account/adverts/16695",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"account",
										"adverts",
										"16695"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 13:32:33 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Content-Length",
									"value": "3863"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=143916 t=1602768753341356"
								}
							],
							"cookie": [],
							"body": "{\n    \"id\": 6135083697,\n    \"user_id\": 11111111,\n    \"status\": \"active\",\n    \"title\": \"\",\n    \"url\": \"https://www.otomoto.pl/osobowe/oferta/alpine-a290-ID6HcbvR.html\",\n    \"created_at\": \"2025-03-03 15:05:45\",\n    \"valid_to\": \"2025-04-08 17:39:40\",\n    \"description\": \"\",\n    \"category_id\": 29,\n    \"region_id\": 6,\n    \"city_id\": 74557,\n    \"municipality\": \"Świętochłowice\",\n    \"city\": {\n        \"pl\": \"Świętochłowice\",\n        \"en\": \"Świętochłowice\"\n    },\n    \"coordinates\": {\n        \"latitude\": 50.30735,\n        \"longitude\": 18.90414,\n        \"radius\": 0,\n        \"zoom_level\": 12\n    },\n    \"advertiser_type\": \"business\",\n    \"contact\": {\n        \"person\": \"Konto\",\n        \"phone_numbers\": [\n            \"xxxxxxxxxx\"\n        ]\n    },\n    \"params\": {\n        \"has_vin\": \"1\",\n        \"has_registration\": \"0\",\n        \"cepik_authorization\": \"1\",\n        \"make\": \"alpine\",\n        \"model\": \"a290\",\n        \"year\": 2019,\n        \"mileage\": 34444,\n        \"engine_capacity\": 1231,\n        \"vin\": \"33333333333333333\",\n        \"fuel_type\": \"petrol\",\n        \"engine_power\": 123,\n        \"gearbox\": \"automatic\",\n        \"body_type\": \"city-car\",\n        \"door_count\": \"3\",\n        \"color\": \"brown-beige\",\n        \"price\": {\n            \"0\": \"price\",\n            \"1\": 8000,\n            \"currency\": \"PLN\",\n            \"gross_net\": \"gross\"\n        }\n    },\n    \"new_used\": \"used\",\n    \"visible_in_profile\": \"1\",\n    \"last_update_date\": \"2025-03-09 17:39:40\"\n}"
						},
						{
							"name": "Update advert - Negative Response (Incorrect ID)",
							"originalRequest": {
								"method": "PUT",
								"header": [
									{
										"key": "Authorization",
										"value": ""
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "User-Agent",
										"value": "O/x.d3v0.12",
										"disabled": true
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"title\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\n  \"description\": \"Hello World. This is a description. Minimum char count -> 30, Maximum cat amount -> 60000\",\n  \"category_id\": 29,\n  \"params\": {\n    \"has_vin\": \"1\",\n    \"is_imported_car\": 1,\n    \"has_registration\": \"1\",\n    \"cepik_authorization\": \"1\",\n    \"towbar\": \"1\",\n    \"make\": \"skoda\",\n    \"model\": \"octavia\",\n    \"video\": \"https://www.youtube.com/watch?v=IyixdWxTH8g\",\n    \"version\": \"ver-1-5-tsi-e--tec-dsg-ambition\",\n    \"generation\": \"gen-iv-2019-octavia\",\n    \"apple_carplay\": \"1\",\n    \"year\": 2023,\n    \"mileage\": 1000,\n    \"engine_capacity\": 1498,\n    \"vin\": \"TESTC000021370000\",\n    \"fuel_type\": \"petrol\",\n    \"engine_power\": 150,\n    \"gearbox\": \"automatic\",\n    \"android_auto\": \"1\",\n    \"transmission\": \"front-wheel\",\n    \"particle_filter\": \"1\",\n    \"bluetooth_interface\": \"1\",\n    \"damaged\": \"0\",\n    \"body_type\": \"combi\",\n    \"co2_emissions\": 20,\n    \"door_count\": \"5\",\n    \"nr_seats\": \"5\",\n    \"color\": \"brown-beige\",\n    \"colour_type\": \"matt\",\n    \"radio\": \"1\",\n    \"rhd\": \"0\",\n    \"price\": {\n      \"0\": \"price\",\n      \"1\": 99999,\n      \"currency\": \"PLN\",\n      \"gross_net\": \"gross\"\n    },\n    \"hands_free_system\": \"1\",\n    \"usb_in\": \"1\",\n    \"maker_warranty_valid_until_date\": \"2026-02-02\",\n    \"maker_warranty_valid_until_km\": 10000,\n    \"vendors_warranty_valid_until_date\": 24,\n    \"country_origin\": \"pl\",\n    \"date_registration\": \"2023-01-02\",\n    \"wireless_device_charging\": \"1\",\n    \"registration\": \"TEST2137\",\n    \"registered\": \"1\",\n    \"original_owner\": \"1\",\n    \"no_accident\": \"1\",\n    \"service_record\": \"1\",\n    \"navigation_system\": \"1\",\n    \"historical_vehicle\": \"1\",\n    \"tuning\": \"1\",\n    \"approval_for_goods\": \"1\",\n    \"soundsystem\": \"1\",\n    \"head_up_display\": \"1\",\n    \"touchscreen_monitor\": \"1\",\n    \"voice_control_for_vehicle_functions\": \"1\",\n    \"internet_access\": \"1\",\n    \"air_conditioning_type\": \"dualzone-automatic-climate-control\",\n    \"convertible_top_type\": \"textile-top\",\n    \"sunblind_type\": \"sunblind-rear-side-door-electric\",\n    \"sunroof\": \"glass-sunroof-fixed\",\n    \"upholstery_type\": \"textile-upholstery\",\n    \"air_condition_rear\": \"1\",\n    \"driver_seat_electrically_adjustable\": \"1\",\n    \"passenger_seat_electrically_adjustable\": \"1\",\n    \"heated_seat_driver\": \"1\",\n    \"heated_seat_passenger\": \"1\",\n    \"lumbar_adjust_driver_electric\": \"1\",\n    \"lumbar_adjust_passenger_electric\": \"1\",\n    \"ventilated_front_seat\": \"1\",\n    \"front_seat_with_massage\": \"1\",\n    \"memory_seat\": \"1\",\n    \"sport_seats_front\": \"1\",\n    \"rear_seat_heating\": \"1\",\n    \"ventilated_rear_seat\": \"1\",\n    \"rear_seat_with_massage\": \"1\",\n    \"armrest_front\": \"1\",\n    \"armrest_rear\": \"1\",\n    \"leather_steering_wheel\": \"1\",\n    \"sports_steering_wheel\": \"1\",\n    \"steering_wheel_with_radio_operation\": \"1\",\n    \"steering_wheel_electrically_adjustable\": \"1\",\n    \"multi_functional_steering_wheel\": \"1\",\n    \"steering_wheel_heated\": \"1\",\n    \"steering_wheel_with_gear_switches\": \"1\",\n    \"leather_gearshifterswitch\": \"1\",\n    \"digital_key\": \"1\",\n    \"keyless_entry\": \"1\",\n    \"keyless_go\": \"1\",\n    \"keyless_engine_start\": \"1\",\n    \"independent_vehicle_heater\": \"1\",\n    \"automatic_heating_control\": \"1\",\n    \"rain_sensor\": \"1\",\n    \"windscreen_heating\": \"1\",\n    \"power_windows_front\": \"1\",\n    \"power_windows_rear\": \"1\",\n    \"tinted_rear_windows\": \"1\",\n    \"windscreenwiper_other\": \"1\",\n    \"top_electrically_operated\": \"1\",\n    \"top_remote_controlled\": \"1\",\n    \"energy_recovery_system\": \"1\",\n    \"quick_charging_function\": \"1\",\n    \"vehicle_charging_cable\": \"1\",\n    \"cruisecontrol_type\": \"cruise-control\",\n    \"headlight_lamp_type\": \"led-front-dim-light\",\n    \"park_distance_control_front\": \"1\",\n    \"park_distance_control_rear\": \"1\",\n    \"park_assistant\": \"1\",\n    \"autonomous_parking_system\": \"1\",\n    \"360_view_camera\": \"1\",\n    \"rear_view_camera\": \"1\",\n    \"door_mirror_electrically_adjustable_in_general\": \"1\",\n    \"door_mirrors_heated\": \"1\",\n    \"door_mirrors_electrically_foldable\": \"1\",\n    \"door_mirror_camera\": \"1\",\n    \"blind_spot_warning\": \"1\",\n    \"active_lane_change_assistant\": \"1\",\n    \"lane_control_assistant\": \"1\",\n    \"distance_control\": \"1\",\n    \"speed_limiter\": \"1\",\n    \"brake_assist\": \"1\",\n    \"curve_trace_assistant\": \"1\",\n    \"traction_control\": \"1\",\n    \"hill_descent_control\": \"1\",\n    \"hill_holder\": \"1\",\n    \"active_speed_sign_recognition\": \"1\",\n    \"traffic_sign_recognition\": \"1\",\n    \"intersection_assist\": \"1\",\n    \"basic_autonomous_driving\": \"1\",\n    \"automated_high_beam_assist\": \"1\",\n    \"adaptive_light\": \"1\",\n    \"dynamic_directional_lights\": \"1\",\n    \"automatic_dimlight_activation\": \"1\",\n    \"headlamp_wash\": \"1\",\n    \"cornering_headlights\": \"1\",\n    \"daytime_running_lights\": \"1\",\n    \"led_daytime_running_lights\": \"1\",\n    \"fog_lamps\": \"1\",\n    \"led_fog_lamps\": \"1\",\n    \"led_rear_lights\": \"1\",\n    \"follow_me_home\": \"1\",\n    \"led_interior_lighting\": \"1\",\n    \"startstop_system\": \"1\",\n    \"tyre_pressure_control\": \"1\",\n    \"electric_parking_brake\": \"1\",\n    \"power_steering\": \"1\",\n    \"limited_slip_differential_in_general\": \"1\",\n    \"selectable_central_differential_characteristics\": \"1\",\n    \"traffic_jam_assist\": \"1\",\n    \"alloy_wheels_type\": \"light-alloy-wheels-16\",\n    \"tyre_type\": \"all-season-tyres\",\n    \"runflat_tyres\": \"1\",\n    \"comfort_suspension\": \"1\",\n    \"electronic_controlled_suspension\": \"1\",\n    \"sport_suspension\": \"1\",\n    \"adjustable_suspension\": \"1\",\n    \"air_suspension\": \"1\",\n    \"hydro_pneumatic_suspension\": \"1\",\n    \"ceramic_composite_brakes\": \"1\",\n    \"antilock_brake_system\": \"1\",\n    \"esp\": \"1\",\n    \"distribution_of_braking_force_electronically\": \"1\",\n    \"power_assisted_brakes\": \"1\",\n    \"city_emergency_brake_assist\": \"1\",\n    \"pedestrian_emergency_brake_assist\": \"1\",\n    \"active_emergency_brake_assist\": \"1\",\n    \"collision_warning_system\": \"1\",\n    \"pre_crash_sound_system\": \"1\",\n    \"rear_pre_crash_system\": \"1\",\n    \"side_pre_crash_system\": \"1\",\n    \"rear_cross_traffic_alert\": \"1\",\n    \"acoustic_vehicle_alerting_system\": \"1\",\n    \"driver_conditioning_monitoring\": \"1\",\n    \"pause_recommendation_warning\": \"1\",\n    \"active_driver_conditioning_monitoring\": \"1\",\n    \"active_lane_control_assistant\": \"1\",\n    \"pre_crash_system\": \"1\",\n    \"automatic_emergency_call\": \"1\",\n    \"driver_airbag\": \"1\",\n    \"passenger_airbag\": \"1\",\n    \"knee_airbag_driver\": \"1\",\n    \"knee_airbag_passenger\": \"1\",\n    \"head_airbags_front\": \"1\",\n    \"central_airbag_driver_and_passenger\": \"1\",\n    \"front_airbags_for_rear_seats\": \"1\",\n    \"side_airbag_driver\": \"1\",\n    \"side_airbag_driver_and_passenger\": \"1\",\n    \"head_airbags_rear\": \"1\",\n    \"side_airbags_rear\": \"1\",\n    \"seat_belt_airbag_rear\": \"1\",\n    \"rear_transversal_curtain_airbag\": \"1\",\n    \"child_seat_fixation\": \"1\",\n    \"roll_over_protection_system\": \"1\"\n  },\n  \"category_id\": 29,\n  \"brand_program_id\": \"54\",\n  \"new_used\": \"used\",\n  \"image_collection_id\": \"12345678\"\n}"
								},
								"url": {
									"raw": "www.otomoto.pl/open/api/account/adverts/1669545",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"account",
										"adverts",
										"1669545"
									]
								}
							},
							"status": "Not Found",
							"code": 404,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 13:33:08 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "76"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=72523 t=1602768788632660"
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": {\n        \"type\": \"NotFoundException\",\n        \"message\": \"Advert 1669545 not found.\"\n    }\n}"
						}
					]
				}
			],
			"description": "How to edit an advert in Otomoto.",
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "DELETING ADVERT",
			"item": [
				{
					"name": "DEACTIVATE ADVERT",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"reason\": {\n    \"id\": 13,\n    \"description\": \"Sprzedałem dzięki otoMoto\"\n  }\n}"
						},
						"url": {
							"raw": "{{base_url}}/account/adverts/:advert_id/deactivate",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"account",
								"adverts",
								":advert_id",
								"deactivate"
							],
							"variable": [
								{
									"key": "advert_id",
									"value": ""
								}
							]
						},
						"description": "Use this request to deactivate an advert.\n\nDeactivating and advert puts it \"offline\", but doesn't delete it. It is used when the end user wants to temporarely deactivate the advert.\n\nIt is possible to reactivate \"deactivated\" adverts.\n\nNote: You can only deactivate \"Active\" adverts."
					},
					"response": [
						{
							"name": "Deactivate advert - Positive Response",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": ""
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"reason\": {\n        \"id\": \"1\",\n        \"description\": \"Deactivate advert\"\n    }\n}"
								},
								"url": {
									"raw": "www.otomoto.pl/open/api/account/adverts/16695/deactivate",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"account",
										"adverts",
										"16695",
										"deactivate"
									]
								}
							},
							"status": "No Content",
							"code": 204,
							"_postman_previewlanguage": "plain",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 13:42:41 GMT"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=163236 t=1602769361086110"
								}
							],
							"cookie": [],
							"body": ""
						},
						{
							"name": "Deactivate advert - Negative Response (Ad not active)",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": "{{token}}"
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"reason\": {\n        \"id\": \"1\",\n        \"description\": \"Deactivate advert\"\n    }\n}"
								},
								"url": {
									"raw": "{{base_url}}/account/adverts/16695/deactivate",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"account",
										"adverts",
										"16695",
										"deactivate"
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 13:42:53 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "87"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=79693 t=1602769373553729"
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": {\n        \"type\": \"BadRequestException\",\n        \"message\": \"Ogłoszenie musi być aktywne\"\n    }\n}"
						}
					]
				},
				{
					"name": "DELETE ADVERT",
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{base_url}}/adverts/:advert_id",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"adverts",
								":advert_id"
							],
							"variable": [
								{
									"key": "advert_id",
									"value": ""
								}
							]
						},
						"description": "Use this request to delete an advert.\n\nDeleting an advert will permenately delete the advert from the end users account. This action should be used when the end user as sold the vehicle/part, and no longer needs it. \n\nThis action is irreversible."
					},
					"response": [
						{
							"name": "Delete advert - Positive Response",
							"originalRequest": {
								"method": "DELETE",
								"header": [
									{
										"key": "Authorization",
										"value": ""
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "www.otomoto.pl/open/api/adverts/16695",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"adverts",
										"16695"
									]
								}
							},
							"status": "No Content",
							"code": 204,
							"_postman_previewlanguage": "plain",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 13:43:37 GMT"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=196638 t=1602769417427657"
								}
							],
							"cookie": [],
							"body": ""
						},
						{
							"name": "Delete advert - Negative Response (Ad doesn't exist)",
							"originalRequest": {
								"method": "DELETE",
								"header": [
									{
										"key": "Authorization",
										"value": "{{token}}"
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{base_url}}/adverts/166953232",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"adverts",
										"166953232"
									]
								}
							},
							"status": "Forbidden",
							"code": 403,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 13:43:56 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "83"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=63754 t=1602769436910521"
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": {\n        \"type\": \"ForbiddenException\",\n        \"message\": \"Ad id 166953232 does not exist.\"\n    }\n}"
						}
					]
				}
			],
			"description": "How to deactivate and/or delete an advert in Otomoto.",
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "PROMOTING ADVERT",
			"item": [
				{
					"name": "CHECK AVIALABLE PROMOTIONS",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{base_url}}/account/adverts/:advert_id/promotions",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"account",
								"adverts",
								":advert_id",
								"promotions"
							],
							"variable": [
								{
									"key": "advert_id",
									"value": ""
								}
							]
						},
						"description": "Use this request to activate an advert.\n\nAfter creating an advert via API, you will be provided with an \"ID\". This is the advert's id and it will be used to identify the advert from then on.\n\nTo activate an advert, simply run the following request with the advert's ID."
					},
					"response": []
				},
				{
					"name": "ACTIVATE PROMOTION",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"promotion_ids\": [81],\r\n    \"payment_type\": \"postpay\"\r\n}"
						},
						"url": {
							"raw": "{{base_url}}/account/adverts/:advert_id/promotions",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"account",
								"adverts",
								":advert_id",
								"promotions"
							],
							"variable": [
								{
									"key": "advert_id",
									"value": ""
								}
							]
						},
						"description": "Use this request to activate an advert.\n\nAfter creating an advert via API, you will be provided with an \"ID\". This is the advert's id and it will be used to identify the advert from then on.\n\nTo activate an advert, simply run the following request with the advert's ID."
					},
					"response": [
						{
							"name": "Activate advert - Negative Response (No Credits)",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": ""
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "www.otomoto.pl/open/api/account/adverts/16695/activate",
									"host": [
										"www",
										"otomoto",
										"pl"
									],
									"path": [
										"open",
										"api",
										"account",
										"adverts",
										"16695",
										"activate"
									]
								}
							},
							"status": "Forbidden",
							"code": 403,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 13:34:58 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Content-Length",
									"value": "151"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Server",
									"value": "Apache/2.4.39 ()"
								},
								{
									"key": "Upgrade",
									"value": "h2,h2c"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-T",
									"value": "D=330312 t=1602768898168732"
								}
							],
							"cookie": [],
							"body": "{\n    \"error\": {\n        \"type\": \"BadRequestException\",\n        \"message\": \"Brak środków na koncie. \"\n    }\n}"
						},
						{
							"name": "Activate advert - Positive Response",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": "{{token}}"
									},
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{base_url}}/account/adverts/8081096253/activate",
									"host": [
										"{{base_url}}"
									],
									"path": [
										"account",
										"adverts",
										"8081096253",
										"activate"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Content-Length",
									"value": "53"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Date",
									"value": "Thu, 15 Oct 2020 13:27:40 GMT"
								},
								{
									"key": "Server",
									"value": "OLXcdn"
								},
								{
									"key": "Expires",
									"value": "Thu, 19 Nov 1981 08:52:00 GMT"
								},
								{
									"key": "Cache-Control",
									"value": "no-store, no-cache, must-revalidate"
								},
								{
									"key": "Pragma",
									"value": "no-cache"
								},
								{
									"key": "Set-Cookie",
									"value": "newrelic_cdn_name=CF; expires=Thu, 15-Oct-2020 13:37:39 GMT; Max-Age=600; path=/"
								},
								{
									"key": "Content-Security-Policy",
									"value": "default-src * 'unsafe-eval' 'unsafe-inline' data:; frame-ancestors 'self' apps.facebook.com app.optimizely.com fonts.googleapis.com cdn.insurads.com *.e-goi.com"
								},
								{
									"key": "X-Xss-Protection",
									"value": "1"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "Referrer-Policy",
									"value": "unsafe-url"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains"
								},
								{
									"key": "X-T",
									"value": "D=441587 t=1602768459592701"
								},
								{
									"key": "X-B",
									"value": "(null)"
								},
								{
									"key": "X-Cache",
									"value": "Miss from cloudfront"
								},
								{
									"key": "Via",
									"value": "1.1 0bb58964819755c192fe9c24c342bd1a.cloudfront.net (CloudFront)"
								},
								{
									"key": "X-Amz-Cf-Pop",
									"value": "PRG50-C1"
								},
								{
									"key": "X-Amz-Cf-Id",
									"value": "ecLRzm_hdkipDYvQ7RSQy2ZbZc7bQUicY5ip9-g9o2UKvVljOdwOdw=="
								}
							],
							"cookie": [],
							"body": "{\r\n    \"message\": \"The promotion has been add to queue, waiting to activation\"\r\n}"
						}
					]
				}
			],
			"description": "How to promote an advert in Otomoto.\n\nFirst, we need to verify if the advertisement is eligible for promotion, and once confirmed, we can proceed with promoting it",
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "PARTS ADVERTS",
			"item": [
				{
					"name": "Create PARTS Advert",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript",
								"packages": {}
							}
						},
						{
							"listen": "prerequest",
							"script": {
								"exec": [],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "{{token}}"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "User-Agent",
								"value": "O/x.d3v0.12",
								"disabled": true
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"params\": {\n      \"delivery\": \"1\",\n      \"parts-type\": \"felgi\",\n      \"parts-category\": \"rims\",\n      \"title_parts\": \"Lorem ipsum dolor sit amet,\",\n      \"manufacturer\": \"RimsFactory\",\n      \"manufacturer_code\": \"12345678\",\n      \"make\": \"jeep\",\n      \"compatibility\": \"jeep\",\n      \"rims-type\": \"felgi-type-alloy\",\n      \"rims-inches\": \"felgi-inches-15\",\n      \"price\": {\n         \"0\": \"price\",\n         \"1\": \"1700\",\n         \"currency\": \"PLN\",\n         \"gross_net\": \"gross\"\n     }\n  },\n  \"title\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\n  \"description\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\",\n  \"new_used\": \"new\",\n  \"category_id\": 163\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/account/adverts/",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"account",
								"adverts",
								""
							],
							"query": [
								{
									"key": "v",
									"value": "2",
									"disabled": true
								}
							]
						}
					},
					"response": []
				}
			]
		}
	],
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"key": "token",
			"value": "",
			"type": "default"
		},
		{
			"key": "base_url",
			"value": "www.otomoto.pl/open/api",
			"type": "default"
		}
	]
}